Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@stencil/vue-output-target

Package Overview
Dependencies
Maintainers
10
Versions
159
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.5.0-2 to 0.5.0-3

2

package.json
{
"name": "@stencil/vue-output-target",
"version": "0.5.0-2",
"version": "0.5.0-3",
"description": "Vue output target for @stencil/core components.",

@@ -5,0 +5,0 @@ "main": "dist/index.cjs.js",

@@ -53,16 +53,12 @@ import { VNode, defineComponent, getCurrentInstance, h, inject, ref, Ref } from 'vue';

*/
if (
customElement !== undefined &&
typeof customElements !== 'undefined' &&
!customElements.get(name)
) {
customElements.define(name, customElement);
}
const Container = defineComponent<Props & InputProps>((props, { attrs, slots, emit }) => {
/**
* If importing custom elements, register it
* with the custom elements registry only if
* it has not already been registered.
*/
if (
customElement !== undefined &&
typeof customElements !== 'undefined' &&
!customElements.get(name)
) {
customElements.define(name, customElement);
}
let modelPropValue = (props as any)[modelProp];

@@ -69,0 +65,0 @@ const containerRef = ref<HTMLElement>();

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