@cabloy/vue-runtime-core 3.4.33 → 3.4.34
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
|
@@ -669,11 +669,9 @@ function emit(instance, event, ...rawArgs) {
|
|
|
669
669
|
if (emitsOptions) {
|
|
670
670
|
if (!(event in emitsOptions) && true) {
|
|
671
671
|
if (!propsOptions || !(shared.toHandlerKey(event) in propsOptions)) {
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
);
|
|
676
|
-
}
|
|
672
|
+
warn$1(
|
|
673
|
+
`Component emitted event "${event}" but it is neither declared in the emits option nor as an "${shared.toHandlerKey(event)}" prop.`
|
|
674
|
+
);
|
|
677
675
|
}
|
|
678
676
|
} else {
|
|
679
677
|
const validator = emitsOptions[event];
|
|
@@ -670,11 +670,9 @@ function emit(instance, event, ...rawArgs) {
|
|
|
670
670
|
if (emitsOptions) {
|
|
671
671
|
if (!(event in emitsOptions) && true) {
|
|
672
672
|
if (!propsOptions || !(toHandlerKey(event) in propsOptions)) {
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
);
|
|
677
|
-
}
|
|
673
|
+
warn$1(
|
|
674
|
+
`Component emitted event "${event}" but it is neither declared in the emits option nor as an "${toHandlerKey(event)}" prop.`
|
|
675
|
+
);
|
|
678
676
|
}
|
|
679
677
|
} else {
|
|
680
678
|
const validator = emitsOptions[event];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cabloy/vue-runtime-core",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.34",
|
|
4
4
|
"description": "@vue/runtime-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/runtime-core.esm-bundler.js",
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@vue/shared": "3.4.31",
|
|
50
|
-
"@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.
|
|
50
|
+
"@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.34"
|
|
51
51
|
}
|
|
52
52
|
}
|