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.60 #118

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.60.

ℹ️ 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 206 versions ahead of your current version.

  • The recommended version was released on 22 days ago.

Release notes
Package name: vue-data-ui
  • 2.2.60 - 2024-08-18

    This release adds optional responsive features to the following charts:

    • VueUiVerticalBar
    • VueUiWordCloud
    • VueUiXyCanvas

    To activate this feature:

    1. The chart must be placed inside a parent container that has fixed dimensions, or a resizable container. If no dimensions are provided, the chart will grow to infinity.

    2. Set the config.responsive attribute to true:

    const config = ref({
      responsive: true,
      ...
    })

    We are planning to rollout this feature to other charts in the future, check out the current roll out state here.

  • 2.2.59 - 2024-08-18
  • 2.2.58 - 2024-08-17

    VueUiXy config improvements regarding time labels (X axis). It is now possible to only show labels at a given modulo value, to avoid showing all labels on large datasets.

    config.chart.grid.labels.xAxisLabels.showOnlyAtModulo: boolean; // default: false
    config.chart.grid.labels.xAxisLabels.modulo: number; // default: 12

    Set showOnlyAtModulo: true, and modulo to a value that is consistent with your dataset.


    VueUiXyCanvas same config improvement:

    config.style.chart.grid.y.timeLabels.modulo: number; // default: 12

    As this chart is designed for very large datasets, this feature is built-in.

  • 2.2.57 - 2024-08-17
  • 2.2.56 - 2024-08-17

    v2.2.56

  • 2.2.55 - 2024-08-17

    This realease adds optional responsive features to the following charts:

    • VueUiWaffle
    • VueUiStripPlot
    • VueUiScatter
    • VueUiRelationCircle
    • VueUiQuadrant

    To activate this feature:

    1. The chart must be placed inside a parent container that has fixed dimensions, or a resizable container. If no dimensions are provided, the chart will grow to infinity.

    2. Set the config.responsive attribute to true:

    const config = ref({
      responsive: true,
      ...
    })

    We are planning to rollout this feature to other charts in the future, check out the current roll out state here.

  • 2.2.54 - 2024-08-15

    This realease adds optional responsive features to the following charts:

    • VueUiCandlestick
    • VueUiAgePyramid

    To activate this feature:

    1. The chart must be placed inside a parent container that has fixed dimensions, or a resizable container. If no dimensions are provided, the chart will grow to infinity.

    2. Set the config.responsive attribute to true:

    const config = ref({
      responsive: true,
      ...
    })

    We are planning to rollout this feature to other charts in the future, check out the current roll out state here.

    This release also improves the design of VueUiGauge, more consistent with VueUiDonut's appearance.
    We got rid of the circles around data markers, therefore the following config attributes are now obsolete:

    config.style.chart.layout.markers.size
    config.style.chart.layout.markers.stroke
    config.style.chart.layout.markers.strokeWidth
    config.style.chart.layout.markers.backgroundColor
    
  • 2.2.53 - 2024-08-13

    This realease adds optional responsive features to the following charts:

    • VueUiTreemap
    • VueUiRings
    • VueUiRadar
    • VueUiParallelCoordinatePlot

    To activate this feature:

    1. The chart must be placed inside a parent container that has fixed dimensions, or a resizable container. If no dimensions are provided, the chart will grow to infinity.

    2. Set the config.responsive attribute to true:

    const config = ref({
      responsive: true,
      ...
    })

    We are planning to rollout this feature to other charts in the future, check out the current roll out state here.

  • 2.2.52 - 2024-08-11

    This realease adds optional responsive features to the following charts:

    • VueUiQuickChart
    • VueUiXy
    • VueUiDonut
    • VueUiNestedDonuts
    • VueUiOnion

    To activate this feature:

    1. The chart must be placed inside a parent container that has fixed dimensions, or a resizable container. If no dimensions are provided, the chart will grow to infinity.

    2. Set the config.responsive attribute to true:

    const config = ref({
      responsive: true,
      ...
    })

    We are planning to rollout this feature to other charts in the future, check out the current roll out state here.

  • 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
  • 2.2.47 - 2024-08-03
  • 2.2.46 - 2024-08-02
  • 2.2.45 - 2024-08-01
  • 2.2.44 - 2024-07-28
  • 2.2.43 - 2024-07-26
  • 2.2.42 - 2024-07-24
  • 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.60.

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 Sep 9, 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 Sep 9, 2024 8:24am

Copy link

netlify bot commented Sep 9, 2024

Deploy Preview for platemaster ready!

Name Link
🔨 Latest commit 9b56d4e
🔍 Latest deploy log https://app.netlify.com/sites/platemaster/deploys/66deb0a90bb5aa00086b2697
😎 Deploy Preview https://deploy-preview-118--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