New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@stencil/vue-output-target

Package Overview
Dependencies
Maintainers
0
Versions
165
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stencil/vue-output-target - npm Package Compare versions

Comparing version 0.9.4 to 0.9.5

22

dist/runtime.cjs.js

@@ -143,2 +143,13 @@ 'use strict';

const classes = new Set(getComponentClasses(attrs.class));
vue.onMounted(() => {
/**
* we register the event emmiter for @Event definitions
* so we can use @event
*/
emitProps.forEach((eventName) => {
containerRef.value.addEventListener(eventName, (e) => {
emit(eventName, e);
});
});
});
/**

@@ -158,3 +169,3 @@ * This directive is responsible for updating any reactive

eventsNames.forEach((eventName) => {
el.addEventListener(eventName.toLowerCase(), (e) => {
el.addEventListener(eventName, (e) => {
/**

@@ -173,11 +184,2 @@ * Only update the v-model binding if the event's target is the element we are

});
/**
* we register the event emmiter for @Event definitions
* so we can use @event
*/
emitProps.forEach((eventName) => {
el.addEventListener(eventName, (e) => {
emit(eventName, e);
});
});
},

@@ -184,0 +186,0 @@ };

@@ -1,2 +0,2 @@

import { defineComponent, useSlots, createSSRApp, compile, ref, getCurrentInstance, inject, h, withDirectives } from 'vue';
import { defineComponent, useSlots, createSSRApp, compile, ref, onMounted, getCurrentInstance, inject, h, withDirectives } from 'vue';

@@ -141,2 +141,13 @@ const LOG_PREFIX = '[vue-output-target]';

const classes = new Set(getComponentClasses(attrs.class));
onMounted(() => {
/**
* we register the event emmiter for @Event definitions
* so we can use @event
*/
emitProps.forEach((eventName) => {
containerRef.value.addEventListener(eventName, (e) => {
emit(eventName, e);
});
});
});
/**

@@ -156,3 +167,3 @@ * This directive is responsible for updating any reactive

eventsNames.forEach((eventName) => {
el.addEventListener(eventName.toLowerCase(), (e) => {
el.addEventListener(eventName, (e) => {
/**

@@ -171,11 +182,2 @@ * Only update the v-model binding if the event's target is the element we are

});
/**
* we register the event emmiter for @Event definitions
* so we can use @event
*/
emitProps.forEach((eventName) => {
el.addEventListener(eventName, (e) => {
emit(eventName, e);
});
});
},

@@ -182,0 +184,0 @@ };

{
"name": "@stencil/vue-output-target",
"version": "0.9.4",
"version": "0.9.5",
"description": "Vue output target for @stencil/core components.",

@@ -5,0 +5,0 @@ "author": "Ionic Team",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc