@stencil/vue-output-target
Advanced tools
Comparing version 0.6.1-dev.11669751385.1c42cc9f to 0.6.1-dev.11672265832.141367b9
{ | ||
"name": "@stencil/vue-output-target", | ||
"version": "0.6.1-dev.11669751385.1c42cc9f", | ||
"version": "0.6.1-dev.11672265832.141367b9", | ||
"description": "Vue output target for @stencil/core components.", | ||
@@ -55,3 +55,3 @@ "main": "dist/index.cjs.js", | ||
}, | ||
"gitHead": "c42cc9fa407385abf8612cede969bf70d8786258" | ||
"gitHead": "41367b9fbe051dbc14ad7b5c321d932cf89b2451" | ||
} |
@@ -12,3 +12,3 @@ import { VNode, defineComponent, getCurrentInstance, h, inject, ref, Ref } from 'vue'; | ||
const ROUTER_PROP_PREFIX = 'router'; | ||
const ARIA_PROP_PREFIX = 'aria'; | ||
/** | ||
@@ -159,3 +159,3 @@ * Starting in Vue 3.1.0, all properties are | ||
const value = props[key]; | ||
if (props.hasOwnProperty(key) && value !== EMPTY_PROP) { | ||
if (props.hasOwnProperty(key) && value !== EMPTY_PROP || key.startsWith(ARIA_PROP_PREFIX)) { | ||
propsToAdd[key] = value; | ||
@@ -162,0 +162,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54506
988