@vue/runtime-core 3.5.5 → 3.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/runtime-core.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.5.
|
|
2
|
+
* @vue/runtime-core v3.5.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6050,11 +6050,12 @@ function doWatch(source, cb, options = shared.EMPTY_OBJ) {
|
|
|
6050
6050
|
} else if (!cb || immediate) {
|
|
6051
6051
|
baseWatchOptions.once = true;
|
|
6052
6052
|
} else {
|
|
6053
|
-
|
|
6054
|
-
stop: shared.NOOP,
|
|
6055
|
-
resume: shared.NOOP,
|
|
6056
|
-
pause: shared.NOOP
|
|
6053
|
+
const watchStopHandle = () => {
|
|
6057
6054
|
};
|
|
6055
|
+
watchStopHandle.stop = shared.NOOP;
|
|
6056
|
+
watchStopHandle.resume = shared.NOOP;
|
|
6057
|
+
watchStopHandle.pause = shared.NOOP;
|
|
6058
|
+
return watchStopHandle;
|
|
6058
6059
|
}
|
|
6059
6060
|
}
|
|
6060
6061
|
const instance = currentInstance;
|
|
@@ -8239,7 +8240,7 @@ function isMemoSame(cached, memo) {
|
|
|
8239
8240
|
return true;
|
|
8240
8241
|
}
|
|
8241
8242
|
|
|
8242
|
-
const version = "3.5.
|
|
8243
|
+
const version = "3.5.6";
|
|
8243
8244
|
const warn = warn$1 ;
|
|
8244
8245
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
8245
8246
|
const devtools = devtools$1 ;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.5.
|
|
2
|
+
* @vue/runtime-core v3.5.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -4732,11 +4732,12 @@ function doWatch(source, cb, options = shared.EMPTY_OBJ) {
|
|
|
4732
4732
|
} else if (!cb || immediate) {
|
|
4733
4733
|
baseWatchOptions.once = true;
|
|
4734
4734
|
} else {
|
|
4735
|
-
|
|
4736
|
-
stop: shared.NOOP,
|
|
4737
|
-
resume: shared.NOOP,
|
|
4738
|
-
pause: shared.NOOP
|
|
4735
|
+
const watchStopHandle = () => {
|
|
4739
4736
|
};
|
|
4737
|
+
watchStopHandle.stop = shared.NOOP;
|
|
4738
|
+
watchStopHandle.resume = shared.NOOP;
|
|
4739
|
+
watchStopHandle.pause = shared.NOOP;
|
|
4740
|
+
return watchStopHandle;
|
|
4740
4741
|
}
|
|
4741
4742
|
}
|
|
4742
4743
|
const instance = currentInstance;
|
|
@@ -6408,7 +6409,7 @@ function isMemoSame(cached, memo) {
|
|
|
6408
6409
|
return true;
|
|
6409
6410
|
}
|
|
6410
6411
|
|
|
6411
|
-
const version = "3.5.
|
|
6412
|
+
const version = "3.5.6";
|
|
6412
6413
|
const warn$1 = shared.NOOP;
|
|
6413
6414
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
6414
6415
|
const devtools = void 0;
|
package/dist/runtime-core.d.ts
CHANGED
|
@@ -1021,8 +1021,8 @@ export interface App<HostElement = any> {
|
|
|
1021
1021
|
mixin(mixin: ComponentOptions): this;
|
|
1022
1022
|
component(name: string): Component | undefined;
|
|
1023
1023
|
component<T extends Component | DefineComponent>(name: string, component: T): this;
|
|
1024
|
-
directive<
|
|
1025
|
-
directive<
|
|
1024
|
+
directive<HostElement = any, Value = any, Modifiers extends string = string, Arg extends string = string>(name: string): Directive<HostElement, Value, Modifiers, Arg> | undefined;
|
|
1025
|
+
directive<HostElement = any, Value = any, Modifiers extends string = string, Arg extends string = string>(name: string, directive: Directive<HostElement, Value, Modifiers, Arg>): this;
|
|
1026
1026
|
mount(rootContainer: HostElement | string,
|
|
1027
1027
|
/**
|
|
1028
1028
|
* @internal
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-core v3.5.
|
|
2
|
+
* @vue/runtime-core v3.5.6
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6107,11 +6107,12 @@ function doWatch(source, cb, options = EMPTY_OBJ) {
|
|
|
6107
6107
|
} else if (!cb || immediate) {
|
|
6108
6108
|
baseWatchOptions.once = true;
|
|
6109
6109
|
} else {
|
|
6110
|
-
|
|
6111
|
-
stop: NOOP,
|
|
6112
|
-
resume: NOOP,
|
|
6113
|
-
pause: NOOP
|
|
6110
|
+
const watchStopHandle = () => {
|
|
6114
6111
|
};
|
|
6112
|
+
watchStopHandle.stop = NOOP;
|
|
6113
|
+
watchStopHandle.resume = NOOP;
|
|
6114
|
+
watchStopHandle.pause = NOOP;
|
|
6115
|
+
return watchStopHandle;
|
|
6115
6116
|
}
|
|
6116
6117
|
}
|
|
6117
6118
|
const instance = currentInstance;
|
|
@@ -8310,7 +8311,7 @@ function isMemoSame(cached, memo) {
|
|
|
8310
8311
|
return true;
|
|
8311
8312
|
}
|
|
8312
8313
|
|
|
8313
|
-
const version = "3.5.
|
|
8314
|
+
const version = "3.5.6";
|
|
8314
8315
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
8315
8316
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
8316
8317
|
const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/runtime-core",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.6",
|
|
4
4
|
"description": "@vue/runtime-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/runtime-core.esm-bundler.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@vue/shared": "3.5.
|
|
50
|
-
"@vue/reactivity": "3.5.
|
|
49
|
+
"@vue/shared": "3.5.6",
|
|
50
|
+
"@vue/reactivity": "3.5.6"
|
|
51
51
|
}
|
|
52
52
|
}
|