@vue/runtime-core 3.3.9 → 3.3.10

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.
@@ -1436,7 +1436,12 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
1436
1436
  if (delayEnter) {
1437
1437
  activeBranch.transition.afterLeave = () => {
1438
1438
  if (pendingId === suspense.pendingId) {
1439
- move(pendingBranch, container2, anchor2, 0);
1439
+ move(
1440
+ pendingBranch,
1441
+ container2,
1442
+ next(activeBranch),
1443
+ 0
1444
+ );
1440
1445
  queuePostFlushCb(effects);
1441
1446
  }
1442
1447
  };
@@ -1483,7 +1488,6 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
1483
1488
  }
1484
1489
  const { vnode: vnode2, activeBranch, parentComponent: parentComponent2, container: container2, isSVG: isSVG2 } = suspense;
1485
1490
  triggerEvent(vnode2, "onFallback");
1486
- const anchor2 = next(activeBranch);
1487
1491
  const mountFallback = () => {
1488
1492
  if (!suspense.isInFallback) {
1489
1493
  return;
@@ -1492,7 +1496,7 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
1492
1496
  null,
1493
1497
  fallbackVNode,
1494
1498
  container2,
1495
- anchor2,
1499
+ next(activeBranch),
1496
1500
  parentComponent2,
1497
1501
  null,
1498
1502
  // fallback tree will not have suspense context
@@ -7558,9 +7562,9 @@ function initCustomFormatter() {
7558
7562
  return;
7559
7563
  }
7560
7564
  const vueStyle = { style: "color:#3ba776" };
7561
- const numberStyle = { style: "color:#0b1bc9" };
7562
- const stringStyle = { style: "color:#b62e24" };
7563
- const keywordStyle = { style: "color:#9d288c" };
7565
+ const numberStyle = { style: "color:#1677ff" };
7566
+ const stringStyle = { style: "color:#f5222d" };
7567
+ const keywordStyle = { style: "color:#eb2f96" };
7564
7568
  const formatter = {
7565
7569
  header(obj) {
7566
7570
  if (!shared.isObject(obj)) {
@@ -7754,7 +7758,7 @@ function isMemoSame(cached, memo) {
7754
7758
  return true;
7755
7759
  }
7756
7760
 
7757
- const version = "3.3.9";
7761
+ const version = "3.3.10";
7758
7762
  const _ssrUtils = {
7759
7763
  createComponentInstance,
7760
7764
  setupComponent,
@@ -923,7 +923,12 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
923
923
  if (delayEnter) {
924
924
  activeBranch.transition.afterLeave = () => {
925
925
  if (pendingId === suspense.pendingId) {
926
- move(pendingBranch, container2, anchor2, 0);
926
+ move(
927
+ pendingBranch,
928
+ container2,
929
+ next(activeBranch),
930
+ 0
931
+ );
927
932
  queuePostFlushCb(effects);
928
933
  }
929
934
  };
@@ -970,7 +975,6 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
970
975
  }
971
976
  const { vnode: vnode2, activeBranch, parentComponent: parentComponent2, container: container2, isSVG: isSVG2 } = suspense;
972
977
  triggerEvent(vnode2, "onFallback");
973
- const anchor2 = next(activeBranch);
974
978
  const mountFallback = () => {
975
979
  if (!suspense.isInFallback) {
976
980
  return;
@@ -979,7 +983,7 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
979
983
  null,
980
984
  fallbackVNode,
981
985
  container2,
982
- anchor2,
986
+ next(activeBranch),
983
987
  parentComponent2,
984
988
  null,
985
989
  // fallback tree will not have suspense context
@@ -6086,7 +6090,7 @@ function isMemoSame(cached, memo) {
6086
6090
  return true;
6087
6091
  }
6088
6092
 
6089
- const version = "3.3.9";
6093
+ const version = "3.3.10";
6090
6094
  const _ssrUtils = {
6091
6095
  createComponentInstance,
6092
6096
  setupComponent,
@@ -1039,7 +1039,7 @@ interface ComponentInternalOptions {
1039
1039
  __name?: string;
1040
1040
  }
1041
1041
  export interface FunctionalComponent<P = {}, E extends EmitsOptions = {}, S extends Record<string, any> = any> extends ComponentInternalOptions {
1042
- (props: P, ctx: Omit<SetupContext<E, IfAny<S, {}, SlotsType<S>>>, 'expose'>): any;
1042
+ (props: P & EmitsToProps<E>, ctx: Omit<SetupContext<E, IfAny<S, {}, SlotsType<S>>>, 'expose'>): any;
1043
1043
  props?: ComponentPropsOptions<P>;
1044
1044
  emits?: E | (keyof E)[];
1045
1045
  slots?: IfAny<S, Slots, SlotsType<S>>;
@@ -1440,7 +1440,12 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
1440
1440
  if (delayEnter) {
1441
1441
  activeBranch.transition.afterLeave = () => {
1442
1442
  if (pendingId === suspense.pendingId) {
1443
- move(pendingBranch, container2, anchor2, 0);
1443
+ move(
1444
+ pendingBranch,
1445
+ container2,
1446
+ next(activeBranch),
1447
+ 0
1448
+ );
1444
1449
  queuePostFlushCb(effects);
1445
1450
  }
1446
1451
  };
@@ -1487,7 +1492,6 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
1487
1492
  }
1488
1493
  const { vnode: vnode2, activeBranch, parentComponent: parentComponent2, container: container2, isSVG: isSVG2 } = suspense;
1489
1494
  triggerEvent(vnode2, "onFallback");
1490
- const anchor2 = next(activeBranch);
1491
1495
  const mountFallback = () => {
1492
1496
  if (!suspense.isInFallback) {
1493
1497
  return;
@@ -1496,7 +1500,7 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
1496
1500
  null,
1497
1501
  fallbackVNode,
1498
1502
  container2,
1499
- anchor2,
1503
+ next(activeBranch),
1500
1504
  parentComponent2,
1501
1505
  null,
1502
1506
  // fallback tree will not have suspense context
@@ -7618,9 +7622,9 @@ function initCustomFormatter() {
7618
7622
  return;
7619
7623
  }
7620
7624
  const vueStyle = { style: "color:#3ba776" };
7621
- const numberStyle = { style: "color:#0b1bc9" };
7622
- const stringStyle = { style: "color:#b62e24" };
7623
- const keywordStyle = { style: "color:#9d288c" };
7625
+ const numberStyle = { style: "color:#1677ff" };
7626
+ const stringStyle = { style: "color:#f5222d" };
7627
+ const keywordStyle = { style: "color:#eb2f96" };
7624
7628
  const formatter = {
7625
7629
  header(obj) {
7626
7630
  if (!isObject(obj)) {
@@ -7814,7 +7818,7 @@ function isMemoSame(cached, memo) {
7814
7818
  return true;
7815
7819
  }
7816
7820
 
7817
- const version = "3.3.9";
7821
+ const version = "3.3.10";
7818
7822
  const _ssrUtils = {
7819
7823
  createComponentInstance,
7820
7824
  setupComponent,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/runtime-core",
3
- "version": "3.3.9",
3
+ "version": "3.3.10",
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.3.9",
36
- "@vue/reactivity": "3.3.9"
35
+ "@vue/shared": "3.3.10",
36
+ "@vue/reactivity": "3.3.10"
37
37
  }
38
38
  }