@vue/runtime-core 3.2.29 → 3.2.30

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.
@@ -3672,9 +3672,8 @@ return withDirectives(h(comp), [
3672
3672
  [bar, this.y]
3673
3673
  ])
3674
3674
  */
3675
- const isBuiltInDirective = /*#__PURE__*/ shared.makeMap('bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo');
3676
3675
  function validateDirectiveName(name) {
3677
- if (isBuiltInDirective(name)) {
3676
+ if (shared.isBuiltInDirective(name)) {
3678
3677
  warn('Do not use built-in directive ids as custom directive id: ' + name);
3679
3678
  }
3680
3679
  }
@@ -7606,7 +7605,7 @@ function isMemoSame(cached, memo) {
7606
7605
  }
7607
7606
 
7608
7607
  // Core API ------------------------------------------------------------------
7609
- const version = "3.2.29";
7608
+ const version = "3.2.30";
7610
7609
  const _ssrUtils = {
7611
7610
  createComponentInstance,
7612
7611
  setupComponent,
@@ -6069,7 +6069,7 @@ function isMemoSame(cached, memo) {
6069
6069
  }
6070
6070
 
6071
6071
  // Core API ------------------------------------------------------------------
6072
- const version = "3.2.29";
6072
+ const version = "3.2.30";
6073
6073
  const _ssrUtils = {
6074
6074
  createComponentInstance,
6075
6075
  setupComponent,
@@ -1046,17 +1046,17 @@ export declare type LegacyConfig = {
1046
1046
  devtools?: boolean;
1047
1047
  /**
1048
1048
  * @deprecated use `config.isCustomElement` instead
1049
- * https://v3.vuejs.org/guide/migration/global-api.html#config-ignoredelements-is-now-config-iscustomelement
1049
+ * https://v3-migration.vuejs.org/breaking-changes/global-api.html#config-ignoredelements-is-now-config-iscustomelement
1050
1050
  */
1051
1051
  ignoredElements?: (string | RegExp)[];
1052
1052
  /**
1053
1053
  * @deprecated
1054
- * https://v3.vuejs.org/guide/migration/keycode-modifiers.html
1054
+ * https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html
1055
1055
  */
1056
1056
  keyCodes?: Record<string, number | number[]>;
1057
1057
  /**
1058
1058
  * @deprecated
1059
- * https://v3.vuejs.org/guide/migration/global-api.html#config-productiontip-removed
1059
+ * https://v3-migration.vuejs.org/breaking-changes/global-api.html#config-productiontip-removed
1060
1060
  */
1061
1061
  productionTip?: boolean;
1062
1062
  };
@@ -1,6 +1,6 @@
1
1
  import { pauseTracking, resetTracking, isRef, toRaw, isShallow as isShallow$1, isReactive, ReactiveEffect, ref, reactive, shallowReactive, trigger, isProxy, shallowReadonly, track, EffectScope, markRaw, proxyRefs, computed as computed$1, isReadonly } from '@vue/reactivity';
2
2
  export { EffectScope, ReactiveEffect, customRef, effect, effectScope, getCurrentScope, isProxy, isReactive, isReadonly, isRef, isShallow, markRaw, onScopeDispose, proxyRefs, reactive, readonly, ref, shallowReactive, shallowReadonly, shallowRef, stop, toRaw, toRef, toRefs, triggerRef, unref } from '@vue/reactivity';
3
- import { isString, isFunction, isPromise, isArray, NOOP, getGlobalThis, extend, EMPTY_OBJ, toHandlerKey, toNumber, hyphenate, camelize, isOn, hasOwn, isModelListener, hasChanged, remove, isObject, isSet, isMap, isPlainObject, invokeArrayFns, def, isReservedProp, EMPTY_ARR, capitalize, toRawType, makeMap, NO, normalizeClass, normalizeStyle, isGloballyWhitelisted } from '@vue/shared';
3
+ import { isString, isFunction, isPromise, isArray, NOOP, getGlobalThis, extend, EMPTY_OBJ, toHandlerKey, toNumber, hyphenate, camelize, isOn, hasOwn, isModelListener, hasChanged, remove, isObject, isSet, isMap, isPlainObject, invokeArrayFns, def, isReservedProp, EMPTY_ARR, capitalize, toRawType, makeMap, isBuiltInDirective, NO, normalizeClass, normalizeStyle, isGloballyWhitelisted } from '@vue/shared';
4
4
  export { camelize, capitalize, normalizeClass, normalizeProps, normalizeStyle, toDisplayString, toHandlerKey } from '@vue/shared';
5
5
 
6
6
  const stack = [];
@@ -3690,7 +3690,6 @@ return withDirectives(h(comp), [
3690
3690
  [bar, this.y]
3691
3691
  ])
3692
3692
  */
3693
- const isBuiltInDirective = /*#__PURE__*/ makeMap('bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo');
3694
3693
  function validateDirectiveName(name) {
3695
3694
  if (isBuiltInDirective(name)) {
3696
3695
  warn('Do not use built-in directive ids as custom directive id: ' + name);
@@ -7702,7 +7701,7 @@ function isMemoSame(cached, memo) {
7702
7701
  }
7703
7702
 
7704
7703
  // Core API ------------------------------------------------------------------
7705
- const version = "3.2.29";
7704
+ const version = "3.2.30";
7706
7705
  const _ssrUtils = {
7707
7706
  createComponentInstance,
7708
7707
  setupComponent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/runtime-core",
3
- "version": "3.2.29",
3
+ "version": "3.2.30",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
34
34
  "dependencies": {
35
- "@vue/shared": "3.2.29",
36
- "@vue/reactivity": "3.2.29"
35
+ "@vue/shared": "3.2.30",
36
+ "@vue/reactivity": "3.2.30"
37
37
  }
38
38
  }