Socket
Socket
Sign inDemoInstall

@vue/runtime-core

Package Overview
Dependencies
2
Maintainers
1
Versions
210
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.0-alpha.7 to 3.0.0-alpha.8

23

dist/runtime-core.d.ts

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

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

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

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

@@ -89,5 +91,4 @@ import { toRefs } from '@vue/reactivity';

export declare function callWithErrorHandling(fn: Function, instance: ComponentInternalInstance | null, type: ErrorTypes, args?: unknown[]): any;
export { camelize }
export declare const camelize: (s: string) => string;
export declare function cloneVNode<T, U>(vnode: VNode<T, U>, extraProps?: Data & VNodeProps): VNode<T, U>;

@@ -217,3 +218,3 @@

$watch: typeof instanceWatch;
} & P & UnwrapSetupBindings<B> & D & ExtractComputedReturns<C> & M;
} & P & UnwrapRef<B> & D & ExtractComputedReturns<C> & M;

@@ -271,3 +272,3 @@ declare type ComponentWatchOptionItem = WatchOptionItem | WatchOptionItem[];

export declare function createSlots(slots: Record<string, Slot>, dynamicSlots: (CompiledSlotDescriptor | CompiledSlotDescriptor[])[]): Record<string, Slot>;
export declare function createSlots(slots: Record<string, Slot>, dynamicSlots: (CompiledSlotDescriptor | CompiledSlotDescriptor[] | undefined)[]): Record<string, Slot>;

@@ -596,3 +597,3 @@ export declare function createStaticVNode(content: string): VNode;

__isPortal: boolean;
process(n1: VNode<any, any> | null, n2: VNode<any, any>, container: object, anchor: object | null, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary<any, any, VNode<any, any>> | null, isSVG: boolean, optimized: boolean, { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, m: move, c: insertComment, o: { querySelector, setElementText } }: RendererInternals<any, any>): void;
process(n1: VNode<any, any> | null, n2: VNode<any, any>, container: object, anchor: object | null, parentComponent: ComponentInternalInstance | null, parentSuspense: SuspenseBoundary<any, any, VNode<any, any>> | null, isSVG: boolean, optimized: boolean, { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, m: move, o: { insert, querySelector, setElementText, createComment } }: RendererInternals<any, any>): void;
};

@@ -604,4 +605,2 @@

declare type ProcessTextOrCommentFn<HostNode, HostElement> = (n1: VNode<HostNode, HostElement> | null, n2: VNode<HostNode, HostElement>, container: HostElement, anchor: HostNode | null) => void;
export declare type Prop<T> = PropOptions<T> | PropType<T>;

@@ -672,3 +671,2 @@

o: RendererOptions<HostNode, HostElement>;
c: ProcessTextOrCommentFn<HostNode, HostElement>;
}

@@ -810,5 +808,4 @@

export declare const Text: unique symbol;
export { toDisplayString }
export declare const toDisplayString: (s: unknown) => string;
export declare function toHandlers(obj: Record<string, any>): Record<string, any>;

@@ -841,10 +838,4 @@ export { toRaw }

export { unref }
declare type UnwrapBinding<B> = B extends ComputedRef<any> ? B extends ComputedRef<infer V> ? V : B : B extends Ref<infer V> ? V : B;
export { UnwrapRef }
declare type UnwrapSetupBindings<B> = {
[K in keyof B]: UnwrapBinding<B[K]>;
};
export declare const useCSSModule: (name?: string) => Record<string, string>;

@@ -851,0 +842,0 @@

{
"name": "@vue/runtime-core",
"version": "3.0.0-alpha.7",
"version": "3.0.0-alpha.8",
"description": "@vue/runtime-core",

@@ -22,3 +22,3 @@ "main": "index.js",

"type": "git",
"url": "git+https://github.com/vuejs/vue.git"
"url": "git+https://github.com/vuejs/vue-next.git"
},

@@ -31,8 +31,9 @@ "keywords": [

"bugs": {
"url": "https://github.com/vuejs/vue/issues"
"url": "https://github.com/vuejs/vue-next/issues"
},
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/runtime-core#readme",
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-core#readme",
"dependencies": {
"@vue/reactivity": "3.0.0-alpha.7"
"@vue/shared": "3.0.0-alpha.8",
"@vue/reactivity": "3.0.0-alpha.8"
}
}

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc