You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@stencil/vue-output-target

Package Overview
Dependencies
Maintainers
4
Versions
177
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

to
0.10.7

7

dist/types.d.ts

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

import type { DefineSetupFnComponent } from 'vue';
import type { DefineSetupFnComponent, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
import type { RouteLocationAsRelativeGeneric, RouteLocationAsPathGeneric } from 'vue-router';
/**

@@ -81,3 +82,3 @@ * Options for the Vue Output Target

}
export type StencilVueComponent<Props, VModelType = string | number | boolean> = DefineSetupFnComponent<Props & InputProps<VModelType>, {}, {}, Props & InputProps<VModelType>>;
export type StencilVueComponent<Props, VModelType = string | number | boolean> = DefineSetupFnComponent<Props & InputProps<VModelType> & VNodeProps & AllowedComponentProps & ComponentCustomProps, {}, {}, Props & InputProps<VModelType> & VNodeProps & AllowedComponentProps & ComponentCustomProps>;
export interface InputProps<T> {

@@ -94,3 +95,3 @@ modelValue?: T;

*/
routerLink?: string | Symbol;
routerLink?: Symbol | string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
}
{
"name": "@stencil/vue-output-target",
"version": "0.10.6",
"version": "0.10.7",
"description": "Vue output target for @stencil/core components.",

@@ -51,2 +51,3 @@ "author": "Ionic Team",

"vue": "^3.4.38",
"vue-router": "^4.5.0",
"@stencil/core": ">=2.0.0 || >=3 || >= 4.0.0-beta.0 || >= 4.0.0"

@@ -58,2 +59,5 @@ },

},
"vue-router": {
"optional": true
},
"@stencil/core": {

@@ -70,4 +74,5 @@ "optional": true

"typescript": "~5.7.0",
"vitest": "^3.0.8"
"vitest": "^3.0.8",
"vue-router": "^4.5.0"
}
}