react-art 19.3.0-canary-0972e239-20251118 → 19.3.0-canary-8ac5f4eb-20251119

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.
@@ -2158,11 +2158,13 @@
2158
2158
  pop(rootInstanceStackCursor, fiber);
2159
2159
  }
2160
2160
  function pushHostContext(fiber) {
2161
- null !== fiber.memoizedState &&
2162
- push(hostTransitionProviderCursor, fiber, fiber);
2163
- var context = requiredContext(contextStackCursor.current),
2164
- nextContext = NO_CONTEXT;
2165
- context !== nextContext &&
2161
+ var stateHook = fiber.memoizedState;
2162
+ null !== stateHook &&
2163
+ ((HostTransitionContext._currentValue2 = stateHook.memoizedState),
2164
+ push(hostTransitionProviderCursor, fiber, fiber));
2165
+ stateHook = requiredContext(contextStackCursor.current);
2166
+ var nextContext = NO_CONTEXT;
2167
+ stateHook !== nextContext &&
2166
2168
  (push(contextFiberStackCursor, fiber, fiber),
2167
2169
  push(contextStackCursor, nextContext, fiber));
2168
2170
  }
@@ -3703,9 +3705,9 @@
3703
3705
  }
3704
3706
  function mapRemainingChildren(currentFirstChild) {
3705
3707
  for (var existingChildren = new Map(); null !== currentFirstChild; )
3706
- null !== currentFirstChild.key
3707
- ? existingChildren.set(currentFirstChild.key, currentFirstChild)
3708
- : existingChildren.set(currentFirstChild.index, currentFirstChild),
3708
+ null === currentFirstChild.key
3709
+ ? existingChildren.set(currentFirstChild.index, currentFirstChild)
3710
+ : existingChildren.set(currentFirstChild.key, currentFirstChild),
3709
3711
  (currentFirstChild = currentFirstChild.sibling);
3710
3712
  return existingChildren;
3711
3713
  }
@@ -4222,10 +4224,11 @@
4222
4224
  knownKeys
4223
4225
  )),
4224
4226
  shouldTrackSideEffects &&
4225
- null !== nextOldFiber.alternate &&
4226
- oldFiber.delete(
4227
- null === nextOldFiber.key ? newIdx : nextOldFiber.key
4228
- ),
4227
+ ((newFiber = nextOldFiber.alternate),
4228
+ null !== newFiber &&
4229
+ oldFiber.delete(
4230
+ null === newFiber.key ? newIdx : newFiber.key
4231
+ )),
4229
4232
  (currentFirstChild = placeChild(
4230
4233
  nextOldFiber,
4231
4234
  currentFirstChild,
@@ -4330,10 +4333,9 @@
4330
4333
  knownKeys
4331
4334
  )),
4332
4335
  shouldTrackSideEffects &&
4333
- null !== nextOldFiber.alternate &&
4334
- oldFiber.delete(
4335
- null === nextOldFiber.key ? newIdx : nextOldFiber.key
4336
- ),
4336
+ ((step = nextOldFiber.alternate),
4337
+ null !== step &&
4338
+ oldFiber.delete(null === step.key ? newIdx : step.key)),
4337
4339
  (currentFirstChild = placeChild(
4338
4340
  nextOldFiber,
4339
4341
  currentFirstChild,
@@ -18349,10 +18351,10 @@
18349
18351
  (function () {
18350
18352
  var internals = {
18351
18353
  bundleType: 1,
18352
- version: "19.3.0-canary-0972e239-20251118",
18354
+ version: "19.3.0-canary-8ac5f4eb-20251119",
18353
18355
  rendererPackageName: "react-art",
18354
18356
  currentDispatcherRef: ReactSharedInternals,
18355
- reconcilerVersion: "19.3.0-canary-0972e239-20251118"
18357
+ reconcilerVersion: "19.3.0-canary-8ac5f4eb-20251119"
18356
18358
  };
18357
18359
  internals.overrideHookState = overrideHookState;
18358
18360
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -18384,7 +18386,7 @@
18384
18386
  exports.Shape = Shape;
18385
18387
  exports.Surface = Surface;
18386
18388
  exports.Text = Text;
18387
- exports.version = "19.3.0-canary-0972e239-20251118";
18389
+ exports.version = "19.3.0-canary-8ac5f4eb-20251119";
18388
18390
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
18389
18391
  "function" ===
18390
18392
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -966,7 +966,10 @@ function popHostContainer() {
966
966
  pop(rootInstanceStackCursor);
967
967
  }
968
968
  function pushHostContext(fiber) {
969
- null !== fiber.memoizedState && push(hostTransitionProviderCursor, fiber);
969
+ var stateHook = fiber.memoizedState;
970
+ null !== stateHook &&
971
+ ((HostTransitionContext._currentValue2 = stateHook.memoizedState),
972
+ push(hostTransitionProviderCursor, fiber));
970
973
  contextStackCursor.current !== NO_CONTEXT &&
971
974
  (push(contextFiberStackCursor, fiber),
972
975
  push(contextStackCursor, NO_CONTEXT));
@@ -1664,9 +1667,9 @@ function createChildReconciler(shouldTrackSideEffects) {
1664
1667
  }
1665
1668
  function mapRemainingChildren(currentFirstChild) {
1666
1669
  for (var existingChildren = new Map(); null !== currentFirstChild; )
1667
- null !== currentFirstChild.key
1668
- ? existingChildren.set(currentFirstChild.key, currentFirstChild)
1669
- : existingChildren.set(currentFirstChild.index, currentFirstChild),
1670
+ null === currentFirstChild.key
1671
+ ? existingChildren.set(currentFirstChild.index, currentFirstChild)
1672
+ : existingChildren.set(currentFirstChild.key, currentFirstChild),
1670
1673
  (currentFirstChild = currentFirstChild.sibling);
1671
1674
  return existingChildren;
1672
1675
  }
@@ -2041,10 +2044,9 @@ function createChildReconciler(shouldTrackSideEffects) {
2041
2044
  )),
2042
2045
  null !== nextOldFiber &&
2043
2046
  (shouldTrackSideEffects &&
2044
- null !== nextOldFiber.alternate &&
2045
- oldFiber.delete(
2046
- null === nextOldFiber.key ? newIdx : nextOldFiber.key
2047
- ),
2047
+ ((newFiber = nextOldFiber.alternate),
2048
+ null !== newFiber &&
2049
+ oldFiber.delete(null === newFiber.key ? newIdx : newFiber.key)),
2048
2050
  (currentFirstChild = placeChild(
2049
2051
  nextOldFiber,
2050
2052
  currentFirstChild,
@@ -2119,8 +2121,11 @@ function createChildReconciler(shouldTrackSideEffects) {
2119
2121
  (step = updateFromMap(oldFiber, returnFiber, newIdx, step.value, lanes)),
2120
2122
  null !== step &&
2121
2123
  (shouldTrackSideEffects &&
2122
- null !== step.alternate &&
2123
- oldFiber.delete(null === step.key ? newIdx : step.key),
2124
+ ((nextOldFiber = step.alternate),
2125
+ null !== nextOldFiber &&
2126
+ oldFiber.delete(
2127
+ null === nextOldFiber.key ? newIdx : nextOldFiber.key
2128
+ )),
2124
2129
  (currentFirstChild = placeChild(step, currentFirstChild, newIdx)),
2125
2130
  null === previousNewFiber
2126
2131
  ? (resultingFirstChild = step)
@@ -9855,10 +9860,10 @@ var slice = Array.prototype.slice,
9855
9860
  })(React.Component);
9856
9861
  var internals$jscomp$inline_1470 = {
9857
9862
  bundleType: 0,
9858
- version: "19.3.0-canary-0972e239-20251118",
9863
+ version: "19.3.0-canary-8ac5f4eb-20251119",
9859
9864
  rendererPackageName: "react-art",
9860
9865
  currentDispatcherRef: ReactSharedInternals,
9861
- reconcilerVersion: "19.3.0-canary-0972e239-20251118"
9866
+ reconcilerVersion: "19.3.0-canary-8ac5f4eb-20251119"
9862
9867
  };
9863
9868
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
9864
9869
  var hook$jscomp$inline_1471 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -9884,4 +9889,4 @@ exports.RadialGradient = RadialGradient;
9884
9889
  exports.Shape = TYPES.SHAPE;
9885
9890
  exports.Surface = Surface;
9886
9891
  exports.Text = Text;
9887
- exports.version = "19.3.0-canary-0972e239-20251118";
9892
+ exports.version = "19.3.0-canary-8ac5f4eb-20251119";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-art",
3
3
  "description": "React ART is a JavaScript library for drawing vector graphics using React. It provides declarative and reactive bindings to the ART library. Using the same declarative API you can render the output to either Canvas, SVG or VML (IE8).",
4
- "version": "19.3.0-canary-0972e239-20251118",
4
+ "version": "19.3.0-canary-8ac5f4eb-20251119",
5
5
  "main": "index.js",
6
6
  "repository": {
7
7
  "type": "git",
@@ -24,10 +24,10 @@
24
24
  "dependencies": {
25
25
  "art": "^0.10.1",
26
26
  "create-react-class": "^15.6.2",
27
- "scheduler": "0.28.0-canary-0972e239-20251118"
27
+ "scheduler": "0.28.0-canary-8ac5f4eb-20251119"
28
28
  },
29
29
  "peerDependencies": {
30
- "react": "19.3.0-canary-0972e239-20251118"
30
+ "react": "19.3.0-canary-8ac5f4eb-20251119"
31
31
  },
32
32
  "files": [
33
33
  "LICENSE",