You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@prefecthq/vue-charts

Package Overview
Dependencies
Maintainers
4
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prefecthq/vue-charts - npm Package Compare versions

Comparing version

to
0.0.7

1

dist_types/index.d.ts
export { default as BarChart } from './BarChart.vue';
export { default as DivergingBarChart } from './DivergingBarChart.vue';
export { default as Timeline } from './Timeline.vue';

2

package.json
{
"name": "@prefecthq/vue-charts",
"version": "0.0.6",
"version": "0.0.7",
"private": false,

@@ -5,0 +5,0 @@ "keywords": [

@@ -45,6 +45,14 @@ import { ref, Ref, onMounted, onUnmounted } from 'vue'

// Starting these with an underscore allows us to use UUIDs as HTMLElement ids
const _uid = () => `_${crypto?.randomUUID?.() || (crypto?.getRandomValues?.(new Uint32Array(1))[0] || new Date().getTime()) * Math.pow(2, -32) * 16}`
if (crypto && !('randomUUID' in crypto)) {
crypto.randomUUID = () => (+[1e7] + -1e3 + -4e3 + -8e3 + -1e11)
.toString()
.replace(/[018]/g,
c => (+c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> +c / 4).toString(16)
)
}
// Starting these with "chart-" allows us to use UUIDs as HTMLElement ids
const _uid = () => `chart-${crypto?.randomUUID()}`
export class Base implements IBase {

@@ -51,0 +59,0 @@ private container: ElementRef

export { default as BarChart } from './BarChart.vue'
export { default as DivergingBarChart } from './DivergingBarChart.vue'
export { default as DivergingBarChart } from './DivergingBarChart.vue'
export { default as Timeline } from './Timeline.vue'

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet