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.4.39 #151

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

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

  • The recommended version was released 22 days ago.

Release notes
Package name: vue-data-ui
  • 2.4.39 - 2024-12-16

    New utility functions

    The following set of tested utility functions are now available:

    import { 
      abbreviate, 
      darkenColor, 
      lightenColor, 
      shiftColorHue 
    } from "vue-data-ui";

    Documentation website is up to date

    abbreviate

    Generate abbreviations for labels

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

    const text = "Lorem Ipsum Dolor Sit Amet";
    const abbreviated = abbreviate(text, 5); // result: "LIDSA"

    darkenColor

    Darkens a color by a specified strength.
    The color passed can be in HEX (with or without alpha channel), RGB or RGBA, or named color.

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

    const color = "#FF0000";
    const darkened = darkenColor(color, 0.1);

    lightenColor

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

    Lightens a color by a specified strength.
    The color passed can be in HEX (with or without alpha channel), RGB or RGBA, or named color.

    const color = "#FF0000";
    const lightened = lightenColor(color, 0.1);

    shiftColorHue

    Shifts hue for a given color, by a given strength.
    The color passed can be in HEX (with or without alpha channel), RGB or RGBA, or named color.

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

    const color = "#FF0000";
    const shifted = shiftColorHue(color, 0.1);




  • 2.4.38 - 2024-12-15

    VueUiGauge

    Add config attributes to further control labels:

    config.style.chart.layout.markers.show: boolean; // default: true
    config.style.chart.layout.markers.prefix: string; // default: ""
    config.style.chart.layout.markers.suffix: string; // default: ""
    config.style.chart.layout.markers.formatter: Function | null ; // default: null
    config.style.chart.legend.show: boolean; // default: true

    Reminder on how to use the formatter:

    const config = ref({
       style: {
         chart: {
           layout: {
             markers: {
               formatter: ({ value }) => {
                 return `my string ${value}`
               }
             }
           }
         }
       }
    })
  • 2.4.37 - 2024-12-12

    New component: VueUiHistoryPlot

    Visualize the dynamic journey of two variables over time, with every point telling a story of change and connection in two-dimensional space.

    Check out the docs
    A chart builder is also available!

    image

    VueUiCarouselTable

    • Fix regression causing caption to move
    • Add config attribute to control the table background color:
    config.tbody.backgroundColor: string; // default: "#FFFFFF"

    VueUiTableSparkline

    • Fix textAlign issues
    • Add config attribute to hide color markers in first TD:
    config.tbody.showColorMarker: boolean; // default: true
    • Improve selection behaviour
    • Add config options to control the background color of selected cells:
    config.tbody.selectedColor.useSerieColor: boolean; // default: true
    config.tbody.selectedColor.fallback: string; // default: #E1E5E8, applied when useSerieColor is set to false
    • Add config options to control chart dimensions:
    config.sparkline.dimensions.width: number; // default: 150
    config.sparkline.dimensions.heightRatio: number; // default: 1
  • 2.4.36 - 2024-12-12

    v2.4.36

  • 2.4.35 - 2024-12-12

    v2.4.35

  • 2.4.34 - 2024-12-12
  • 2.4.33 - 2024-12-11

    v2.4.33

  • 2.4.32 - 2024-12-11

    v2.4.32

  • 2.4.31 - 2024-12-11

    v2.4.31

  • 2.4.30 - 2024-12-11
  • 2.4.29 - 2024-12-11

    v2.4.29

  • 2.4.28 - 2024-12-10
  • 2.4.27 - 2024-12-10

    VueUiCarouselTable

    New config options to control the display of the scrollbar:

    config.scrollbar.showOnlyOnHover: boolean; // default: false
    config.scrollbar.hide: boolean; // default: false

    see #129

  • 2.4.26 - 2024-12-07
  • 2.4.25 - 2024-12-06
  • 2.4.24 - 2024-12-06
  • 2.4.23 - 2024-12-06
  • 2.4.22 - 2024-12-06
  • 2.4.21 - 2024-12-04
  • 2.4.20 - 2024-12-03
  • 2.4.19 - 2024-12-03
  • 2.4.18 - 2024-12-03
  • 2.4.17 - 2024-12-01
  • 2.4.16 - 2024-12-01
  • 2.4.15 - 2024-12-01
  • 2.4.14 - 2024-11-30
  • 2.4.13 - 2024-11-29
  • 2.4.12 - 2024-11-29
  • 2.4.11 - 2024-11-29
  • 2.4.10 - 2024-11-27
  • 2.4.9 - 2024-11-27
  • 2.4.8 - 2024-11-27
  • 2.4.7 - 2024-11-25
  • 2.4.6 - 2024-11-25
  • 2.4.5 - 2024-11-25
  • 2.4.4 - 2024-11-24
  • 2.4.3 - 2024-11-24
  • 2.4.2 - 2024-11-23
  • 2.4.1 - 2024-11-21
  • 2.4.0 - 2024-11-20
  • 2.3.99 - 2024-11-19
  • 2.3.98 - 2024-11-18
  • 2.3.97 - 2024-11-17
  • 2.3.96 - 2024-11-17
  • 2.3.95 - 2024-11-16
  • 2.3.94 - 2024-11-16
  • 2.3.93 - 2024-11-15
  • 2.3.92 - 2024-11-15
  • 2.3.91 - 2024-11-15
  • 2.3.90 - 2024-11-14
  • 2.3.89 - 2024-11-14
  • 2.3.88 - 2024-11-14
  • 2.3.87 - 2024-11-14
  • 2.3.86 - 2024-11-13
  • 2.3.85 - 2024-11-12
  • 2.3.84 - 2024-11-11
  • 2.3.83 - 2024-11-11
  • 2.3.82 - 2024-11-11
  • 2.3.81 - 2024-11-11
  • 2.3.80 - 2024-11-11
  • 2.3.79 - 2024-11-10
  • 2.3.78 - 2024-11-10
  • 2.3.77 - 2024-11-09
  • 2.3.76 - 2024-11-07
  • 2.3.75 - 2024-11-06
  • 2.3.74 - 2024-11-05
  • 2.3.73 - 2024-11-04
  • 2.3.72 - 2024-11-04
  • 2.3.71 - 2024-11-04
  • 2.3.70 - 2024-11-04
  • 2.3.69 - 2024-11-04
  • 2.3.68 - 2024-11-03
  • 2.3.67 - 2024-11-02
  • 2.3.66 - 2024-11-02
  • 2.3.65 - 2024-11-02
  • 2.3.64 - 2024-11-02
  • 2.3.63 - 2024-11-02
  • 2.3.62 - 2024-11-02
  • 2.3.61 - 2024-11-01
  • 2.3.60 - 2024-11-01
  • 2.3.59 - 2024-11-01
  • 2.3.58 - 2024-10-31
  • 2.3.57 - 2024-10-31
  • 2.3.56 - 2024-10-31
  • 2.3.55 - 2024-10-31
  • 2.3.54 - 2024-10-31
  • 2.3.53 - 2024-10-31
  • 2.3.52 - 2024-10-31
  • 2.3.51 - 2024-10-31
  • 2.3.50 - 2024-10-31
  • 2.3.49 - 2024-10-31
  • 2.3.48 - 2024-10-31
  • 2.3.47 - 2024-10-30
  • 2.3.46 - 2024-10-28
  • 2.3.45 - 2024-10-27
  • 2.3.44 - 2024-10-26
  • 2.3.43 - 2024-10-25
  • 2.3.42 - 2024-10-25
  • 2.3.41 - 2024-10-25
  • 2.3.40 - 2024-10-25
  • 2.3.39 - 2024-10-24
  • 2.3.38 - 2024-10-24
  • 2.3.37 - 2024-10-24
  • 2.3.36 - 2024-10-24
  • 2.3.35 - 2024-10-23
  • 2.3.34 - 2024-10-22
  • 2.3.33 - 2024-10-22
  • 2.3.32 - 2024-10-22
  • 2.3.31 - 2024-10-21
  • 2.3.30 - 2024-10-21
  • 2.3.29 - 2024-10-21
  • 2.3.28 - 2024-10-19
  • 2.3.27 - 2024-10-17
  • 2.3.26 - 2024-10-15
  • 2.3.25 - 2024-10-14
  • 2.3.24 - 2024-10-13
  • 2.3.23 - 2024-10-12
  • 2.3.22 - 2024-10-09
  • 2.3.21 - 2024-10-09
  • 2.3.20 - 2024-10-08
  • 2.3.19 - 2024-10-07
  • 2.3.18 - 2024-10-07
  • 2.3.17 - 2024-10-06
  • 2.3.16 - 2024-10-06
  • 2.3.15 - 2024-10-06
  • 2.3.14 - 2024-10-05
  • 2.3.13 - 2024-10-04
  • 2.3.12 - 2024-10-04
  • 2.3.11 - 2024-10-04
  • 2.3.10 - 2024-10-04
  • 2.3.9 - 2024-10-03
  • 2.3.8 - 2024-10-03
  • 2.3.7 - 2024-10-02
  • 2.3.6 - 2024-10-01
  • 2.3.5 - 2024-10-01
  • 2.3.4 - 2024-09-29
  • 2.3.3 - 2024-09-29
  • 2.3.2 - 2024-09-29
  • 2.3.1 - 2024-09-28
  • 2.3.0 - 2024-09-28
  • 2.2.99 - 2024-09-27
  • 2.2.98 - 2024-09-27
  • 2.2.97 - 2024-09-26
  • 2.2.96 - 2024-09-26
  • 2.2.95 - 2024-09-25
  • 2.2.94 - 2024-09-25
  • 2.2.93 - 2024-09-25
  • 2.2.92 - 2024-09-25
  • 2.2.91 - 2024-09-25
  • 2.2.90 - 2024-09-25
  • 2.2.89 - 2024-09-21
  • 2.2.88 - 2024-09-10
  • 2.2.87 - 2024-09-10
  • 2.2.86 - 2024-09-10
  • 2.2.85 - 2024-09-10
  • 2.2.84 - 2024-09-06
  • 2.2.83 - 2024-09-06
  • 2.2.82 - 2024-09-05
  • 2.2.81 - 2024-09-05
  • 2.2.80 - 2024-09-05
  • 2.2.79 - 2024-09-02
  • 2.2.78 - 2024-09-01
  • 2.2.74 - 2024-08-29
  • 2.2.73 - 2024-08-29
  • 2.2.72 - 2024-08-28
  • 2.2.71 - 2024-08-26
  • 2.2.70 - 2024-08-26
  • 2.2.69 - 2024-08-25
  • 2.2.68 - 2024-08-25
  • 2.2.67 - 2024-08-24
  • 2.2.66 - 2024-08-24
  • 2.2.65 - 2024-08-24
  • 2.2.64 - 2024-08-24
  • 2.2.63 - 2024-08-23
  • 2.2.62 - 2024-08-21
  • 2.2.61 - 2024-08-20
  • 2.2.60 - 2024-08-18
  • 2.2.59 - 2024-08-18
  • 2.2.58 - 2024-08-17
  • 2.2.57 - 2024-08-17
  • 2.2.56 - 2024-08-17
  • 2.2.55 - 2024-08-17
  • 2.2.54 - 2024-08-15
  • 2.2.53 - 2024-08-13
  • 2.2.52 - 2024-08-11
  • 2.2.51 - 2024-08-10
  • 2.2.50 - 2024-08-06
  • 2.2.49 - 2024-08-05
  • 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.4.39.

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 Jan 7, 2025

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 Jan 7, 2025 4:26am

Copy link

netlify bot commented Jan 7, 2025

Deploy Preview for platemaster ready!

Name Link
🔨 Latest commit 0a3cd68
🔍 Latest deploy log https://app.netlify.com/sites/platemaster/deploys/677cacbcc967520008fdfb6a
😎 Deploy Preview https://deploy-preview-151--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