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.14 #75

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

Conversation

Anomaly-1
Copy link
Owner

This PR was automatically created by Snyk using the credentials of a real user.


![snyk-top-banner](https://github.com/andygongea/OWASP-Benchmark/assets/818805/c518c423-16fe-447e-b67f-ad5a49b5d123)

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

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

  • The recommended version was released on 21 days ago.

Release notes
Package name: vue-data-ui
  • 2.2.14 - 2024-06-09

    A new component was added, bringing the total count to 50 🎉

    VueUiWordCloud (see the demo on the docs website)

    The component takes the following props:

    dataset: VueUiWordCloudDatasetItem[] | string;
    config?: VueUiWordCloudConfig;
    <VueUiWordCloud 
      :dataset="dataset" 
      :config="config" 
    />

    The dataset prop can either be plain text, or an array of objects of type VueUiWordCloudDatasetItem[]:

    [
      {
        name: string;
        value: number;
      },
      {...}
    ]

    A utility function is also available for you to convert plain text to a dataset of type VueUiWordCloudDatasetItem[]:

    import { createWordCloudDatasetFromPlainText } from "vue-data-ui";

    const plainText = "Lorem ipsum dolor sit amet";

    const dataset = ref<VueUiWordCloudDatasetItem[]>(createWordCloudDatasetFromPlainText(plainText));

    Since v2.2.16, an optional callback was added to this function, to format text output:

    import { createWordCloudDatasetFromPlainText } from "vue-data-ui";

    const plainText = "Hello, world, hello, people!";
    const dataset = ref(createWordCloudDatasetFromPlainText(plainText, word => word.toUpperCase()));
    /* output:
    [
    { name: "HELLO", value: 2 },
    { name: "WORLD", value: 1 },
    { name: "PEOPLE", value: 1 }
    ]
    */

    As for all components, it can be used with the VueDataUi universal component:

    <VueDataUi 
      component="VueUiWordCloud" 
      :dataset="dataset" 
      :config="config" 
    />

    This component also bears the customPalette and theme config options.
    As a reminder:

  • 2.2.13 - 2024-06-09
  • 2.2.12 - 2024-06-09
  • 2.2.11 - 2024-06-08

    Technical release to optimize bundle size:

    • removed legacy userOptions config options now useless (only the show attribute is left)
    • dried .d.ts file
  • 2.2.10 - 2024-06-08

    This release adds tooltip config options to style its border, on all charts bearing tooltips.

    New attributes in the tooltip config object:

    {
      ...,
      borderRadius: number; // default: 4
      borderColor: string; // default: "#e1e5e8"
      borderWidth: number; // default: 1
    }

    VueUiQuickChart tooltip options are named differently:

    {
      ...,
      tooltipBorderRadius,
      tooltipBorderColor,
      tooltipBorderWidth
    }

    Reminder: these new config attributes impact the default tooltip. To make your own tooltip, you can use the customFormat tooltip config option (all explained in the docs, and on v2.0.6 release)

  • 2.2.9 - 2024-06-06

    This release introduces themes.

    By default, all charts use the default palette.
    You can choose to use your own colors in your datasets, and set your own configurations, or you can now opt for one of the 3 built-in themes:

    • zen
    • hack
    • concrete

    Any colors provided in the dataset prop will take precedence over the colors of the themes, so you can still choose your own colors for your datapoints when using a theme.

    The theme attribute is added to all config objects. Here is an example of how to set it up (the theme attribute is always at the root of the config object):

    const donutConfig = ref({
      theme: "zen", // "zen" | "hack" | "concrete"; "" by default
      ...restOfYourConfig
    })

    If you are curious, you can retrieve the themes for a component by exporting the getThemeConfig method from "vue-data-ui":

    import { getThemeConfig } from "vue-data-ui";

    const donutThemes = getThemeConfig("vue_ui_donut");




  • 2.2.8 - 2024-06-04

    VueUiXy

    • Added config options to hide | show axes lines, as well as the zero line, to allow for minimalist designs

    config.chart.grid.labels.zeroLine.show: boolean; // default: true; hide or show the zero base line
    config.chart.grid.labels.yAxis.showBaseline: boolean; // default: true; hide or show the yAxis line
    config.chart.grid.labels.xAxis.showBaseline: boolean; // default: true; hide or show the xAxis line; this config option was already there, but is mentioned for consistency

  • 2.2.7 - 2024-06-04
  • 2.2.6 - 2024-06-04

    In order to harmonize your dashboards and ease the process of selecting colors for your different charts, this release adds the config option customPalette: string[] to the following components:

    • VueUi3dBar
    • VueUiChestnut
    • VueUiDonut
    • VueUiDonutEvolution
    • VueUiGalaxy
    • VueUiGauge
    • VueUiMolecule
    • VueUiNestedDonuts
    • VueUiOnion
    • VueUiQuadrant
    • VueUiQuickChart
    • VueUiRadar
    • VueUiRelationCircle
    • VueUiRings
    • VueUiScatter
    • VueUiSparkStackbar
    • VueUiSparkbar
    • VueUiStripPlot
    • VueUiTableSparkline
    • VueUiThermometer
    • VueUiTreemap
    • VueUiVerticalBar
    • VueUiWaffle
    • VueUiXy

    Allowed color formats: HEX, RGB, HSL, named colors.
    Note that any color provided in datasets will override custom and default palette colors.

  • 2.2.5 - 2024-06-03
    • VueUiXy: Prevented optional highlight area to overflow on the left side of the chart when zooming.
    • Updated docs
  • 2.2.4 - 2024-06-03

    Components' data tables are now inside a dynamic accordion for smooth toggle transition.

  • 2.2.3 - 2024-06-03
  • 2.2.2 - 2024-06-02

    VueUiXy :

    Added new showSerieName dataset option to display the serie name for line and plot types, either at the start or end of the dataset.

    Here is a reminder of all dataset options :

    {
      name: string; // recommended
      series: number[]; // required
      type: "bar" | "line" | "plot"; // default: "line"
      color?: string; // defaults to internal palette
      dashed?: boolean; // default: false
      useTag?: "start" | "end"; // default: "none"
      dataLabels?: boolean; // default: true
      useProgression?: boolean; // default: false
      useArea?: boolean; // default: false
      smooth?: boolean; // default: false
      shape?: "circle" | "triangle" | "square" | "diamond" | "pentagon" | "hexagon" | "star"; // default: "circle"
      scaleSteps?: number; // active when config.chart.grid.labels.yAxis.useIndividualScale is set to true
      scaleLabel?: string; // active when config.chart.grid.labels.yAxis.useIndividualScale is set to true
      autoScaling?: boolean; // active when config.chart.grid.labels.yAxis.useIndividualScale and config.chart.grid.labels.yAxis.stacked are set to true
      stackRatio?: number; // from 0 to 1, active when config.chart.grid.labels.yAxis.useIndividualScale and config.chart.grid.labels.yAxis.stacked are set to true
      showSerieName?: "start" | "end"; // default: "none"
    }
  • 2.2.1 - 2024-06-02

    For all components using a data table, added a close button on top of the table when it is open, to avoid having to use the user options menu to close it.

  • 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.14.

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 Jun 30, 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 Jun 30, 2024 8:38am

Copy link

netlify bot commented Jun 30, 2024

Deploy Preview for platemaster ready!

Name Link
🔨 Latest commit 1e41bc9
🔍 Latest deploy log https://app.netlify.com/sites/platemaster/deploys/6681193a4ecd530008260dd8
😎 Deploy Preview https://deploy-preview-75--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