Socket
Socket
Sign inDemoInstall

@vue/runtime-core

Package Overview
Dependencies
Maintainers
1
Versions
235
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/runtime-core - npm Package Compare versions

Comparing version 3.0.0-beta.20 to 3.0.0-beta.21

32

dist/runtime-core.d.ts

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

import { camelize } from '@vue/shared';
import { capitalize } from '@vue/shared';
import { ComputedGetter } from '@vue/reactivity';

@@ -19,2 +21,3 @@ import { ComputedRef } from '@vue/reactivity';

import { shallowRef } from '@vue/reactivity';
import { toDisplayString } from '@vue/shared';
import { toRaw } from '@vue/reactivity';

@@ -116,8 +119,5 @@ import { toRef } from '@vue/reactivity';

export declare function callWithErrorHandling(fn: Function, instance: ComponentInternalInstance | null, type: ErrorTypes, args?: unknown[]): any;
export { camelize }
export { capitalize }
/**
* @private
*/
export declare const camelize: (str: string) => string;
declare interface ClassComponent {

@@ -138,2 +138,7 @@ new (...args: any[]): ComponentPublicInstance<any, any, any, any, any>;

declare const enum CompiledSlotTypes {
STATIC = 1,
DYNAMIC = 2
}
export declare type Component = ComponentOptions | FunctionalComponent<any>;

@@ -232,2 +237,3 @@

emit: EmitFn;
emitted: Record<string, boolean> | null;
/* Excluded from this release type: setupState */

@@ -258,2 +264,3 @@ /* Excluded from this release type: setupContext */

/* Excluded from this release type: __props */
/* Excluded from this release type: __emits */
/* Excluded from this release type: __scopeId */

@@ -846,3 +853,3 @@ /* Excluded from this release type: __cssModules */

_ctx?: ComponentInternalInstance | null;
_?: 1;
_?: CompiledSlotTypes;
};

@@ -868,3 +875,3 @@ export { reactive }

export declare interface Renderer<HostElement = any> {
export declare interface Renderer<HostElement = RendererElement> {
render: RootRenderFunction<HostElement>;

@@ -1094,9 +1101,5 @@ createApp: CreateAppFunction<HostElement>;

export { Text_2 as Text }
export { toDisplayString }
/**
* @private
*/
export declare const toDisplayString: (val: unknown) => string;
/**
* For prefixing keys in v-on="obj" with "on"

@@ -1149,4 +1152,2 @@ * @private

export declare const useCSSModule: (name?: string) => Record<string, string>;
export declare const useSSRContext: <T = Record<string, any>>() => T | undefined;

@@ -1185,4 +1186,3 @@

export declare interface VNodeArrayChildren extends Array<VNodeArrayChildren | VNodeChildAtom> {
}
export declare type VNodeArrayChildren = Array<VNodeArrayChildren | VNodeChildAtom>;

@@ -1189,0 +1189,0 @@ export declare type VNodeChild = VNodeChildAtom | VNodeArrayChildren;

{
"name": "@vue/runtime-core",
"version": "3.0.0-beta.20",
"version": "3.0.0-beta.21",
"description": "@vue/runtime-core",

@@ -34,5 +34,5 @@ "main": "index.js",

"dependencies": {
"@vue/shared": "3.0.0-beta.20",
"@vue/reactivity": "3.0.0-beta.20"
"@vue/shared": "3.0.0-beta.21",
"@vue/reactivity": "3.0.0-beta.21"
}
}

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 too big to display

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