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.49 #152

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

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

  • The recommended version was released 21 days ago.

Release notes
Package name: vue-data-ui
  • 2.4.49 - 2024-12-23

    v2.4.49

  • 2.4.48 - 2024-12-23

    v2.4.48

  • 2.4.47 - 2024-12-22

    VueUiGauge #142

    Add optional segment labels.

    image

    New dataset attribute name for dataset series

    const dataset = ref({
        base: 12250, // optional
        value: 4.2,
        series: [
            {
                from: 1,
                to: 3,
                color: "#ff6400", // optional
                name: 'bad', // optional
                nameOffsetRatio: 1.1 // optional, to offset an individual name label and avoid label overlapping if segments are narrow
            },
            {
                from: 3,
                to: 4,
                color: "#5f8bee",
                name: 'acceptable'
            },
            {
                from: 4,
                to: 5,
                color: "#42d392",
                name: 'very good'
            },
        ]
    })

    It is possible to set individual offset for name labels, using the nameOffsetRatio dataset attribute:

    image

    New configuration attributes for segment labels:

    config.style.chart.layout.segmentNames: {
      show: boolean; // default: true
      curved: boolean; // default: true
      offsetRatio: number; // default: 1.1
      fontSize: number; // default: 16
      useSerieColor: boolean; // default: true
      color: string; // default: "#2D353C"
      bold: boolean; // default: false
    }
    • A new config attribute was also added to control the radius of the gauge:
    config.style.chart.layout.radiusRatio: number; // default: 1
    • New config attributes are added to display separators between segments:
    config.style.chart.layout.segmentSeparators: {
      show: boolean; // default: false
      offsetOut: number; // default: 0
      offsetIn: number; // default: 0
      stroke: string; // default: "#2D353C"
      strokeWidth: number; // default: 2
    }

    Here is an example of usage for separators (check out the examples page):

    image

    Documentation is up to date
    Chart builder too:)

    An example of cool stuff that can be done now with VueUiGauge:

    image

  • 2.4.46 - 2024-12-22

    v2.4.46

  • 2.4.45 - 2024-12-21

    v2.4.45

  • 2.4.44 - 2024-12-19

    VueUiDonut #141

    • Fix percentage display error in legend after multiple clicks - by @ mnenie

    VueUiXy

    • Minor design improvement in tooltip and legend markers
  • 2.4.43 - 2024-12-19

    VueUiXy & VueUiStackbar #139

    • Add @ selectTimeLabel emit

    Use this emit to use the data at the given time label:

    <VueUiStackbar
      :dataset="dataset"
      :config="config"
      @ selectTimeLabel="selectTimeLabel"
    />
    function selectTimeLabel(data) {
      console.log(data);
    }
    • Add #time-label scoped slot

    Use this slot to customize time labels with your own svg text elements:

    <VueUiStackbar :dataset="dataset" :config="config">
      <template #time-label="{ x, y, fontSize, fill, transform, absoluteIndex, content, textAnchor }">
        <g @ click="() => selectTimeLabel({ absoluteIndex, content, /* or whatever you need for your custom click event */ })">                
          <text
            :x="x"
            :y="y"
            :font-size="fontSize"
            :text-anchor="textAnchor"
            :fill="fill"
          >
            {{ content }}
          </text>
          <text
            :x="x"
            :y="y + fontSize"
            :font-size="fontSize * 0.8"
            :text-anchor="textAnchor"
            fill="grey"
          >
            {{ content }}
          </text>
        </g>
      </template>
    </VueUiStackbar>

    An additional config attribute was also added for both components to show/hide time label in the tooltip:

    • VueUiXy:
    config.chart.tooltip.showTimeLabel: boolean; // default: true
    • VueUiStackbar:
    config.style.chart.tooltip.showTimeLabel: boolean; // default: true
  • 2.4.42 - 2024-12-18

    Tooltip #138

    • Fix tooltip offset when the component is placed inside a wrapper bearing transform css properties. Tooltips are now placed inside the splendid Teleport built-in component, attaching it to the body instead of the chart wrapper. Vue is awesome 🍀

    Zoom #137

    • Add config attributes to set initial zoom startIndex and endIndex, to show the chart already zoomed in on load. Inside the zoom config attribute object, the following attributes are now available:
    startIndex: number | null; // default: null
    endIndex: number | null; // default: null

    Components with the zoom feature:

    • VueUiCandlestick
    • VueUiDonutEvolution
    • VueUiQuickChart *
    • VueUiStackbar
    • VueUiXy
    • VueUiXyCanvas

    * VueUiQuickChart has special attributes for this feature:

    zoomStartIndex: number | null; // default: null
    zoomEndIndex: number | null; // default: null
  • 2.4.41 - 2024-12-18

    VueUiRelationCircle

    Full revamp of the component with better functionality.
    Docs are up to date

    Enregistrement.de.l.ecran.2024-12-18.a.08.29.07.mov
    Enregistrement.de.l.ecran.2024-12-18.a.08.29.07.mov
      </li>
      <li>
        <b>2.4.40</b> - <a href="https://redirect.github.com/graphieros/vue-data-ui/releases/tag/v2.4.40">2024-12-17</a></br><h3>VueUiXy</h3>
    
    • Fix error in responsive mode when no title is set.

    VueUiDashboard

    • Prevent dashboard events when using zoom inputs in chart components
  • 2.4.39 - 2024-12-16
  • 2.4.38 - 2024-12-15
  • 2.4.37 - 2024-12-12
  • 2.4.36 - 2024-12-12
  • 2.4.35 - 2024-12-12
  • 2.4.34 - 2024-12-12
  • 2.4.33 - 2024-12-11
  • 2.4.32 - 2024-12-11
  • 2.4.31 - 2024-12-11
  • 2.4.30 - 2024-12-11
  • 2.4.29 - 2024-12-11
  • 2.4.28 - 2024-12-10
  • 2.4.27 - 2024-12-10
  • 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.49.

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 14, 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 14, 2025 5:18am

Copy link

netlify bot commented Jan 14, 2025

Deploy Preview for platemaster ready!

Name Link
🔨 Latest commit 1bb1f44
🔍 Latest deploy log https://app.netlify.com/sites/platemaster/deploys/6785f37154616000087463eb
😎 Deploy Preview https://deploy-preview-152--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