react-art 19.3.0-canary-0972e239-20251118 → 19.3.0-canary-eb89912e-20251118

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.
@@ -3703,9 +3703,9 @@
3703
3703
  }
3704
3704
  function mapRemainingChildren(currentFirstChild) {
3705
3705
  for (var existingChildren = new Map(); null !== currentFirstChild; )
3706
- null !== currentFirstChild.key
3707
- ? existingChildren.set(currentFirstChild.key, currentFirstChild)
3708
- : existingChildren.set(currentFirstChild.index, currentFirstChild),
3706
+ null === currentFirstChild.key
3707
+ ? existingChildren.set(currentFirstChild.index, currentFirstChild)
3708
+ : existingChildren.set(currentFirstChild.key, currentFirstChild),
3709
3709
  (currentFirstChild = currentFirstChild.sibling);
3710
3710
  return existingChildren;
3711
3711
  }
@@ -4222,10 +4222,11 @@
4222
4222
  knownKeys
4223
4223
  )),
4224
4224
  shouldTrackSideEffects &&
4225
- null !== nextOldFiber.alternate &&
4226
- oldFiber.delete(
4227
- null === nextOldFiber.key ? newIdx : nextOldFiber.key
4228
- ),
4225
+ ((newFiber = nextOldFiber.alternate),
4226
+ null !== newFiber &&
4227
+ oldFiber.delete(
4228
+ null === newFiber.key ? newIdx : newFiber.key
4229
+ )),
4229
4230
  (currentFirstChild = placeChild(
4230
4231
  nextOldFiber,
4231
4232
  currentFirstChild,
@@ -4330,10 +4331,9 @@
4330
4331
  knownKeys
4331
4332
  )),
4332
4333
  shouldTrackSideEffects &&
4333
- null !== nextOldFiber.alternate &&
4334
- oldFiber.delete(
4335
- null === nextOldFiber.key ? newIdx : nextOldFiber.key
4336
- ),
4334
+ ((step = nextOldFiber.alternate),
4335
+ null !== step &&
4336
+ oldFiber.delete(null === step.key ? newIdx : step.key)),
4337
4337
  (currentFirstChild = placeChild(
4338
4338
  nextOldFiber,
4339
4339
  currentFirstChild,
@@ -18349,10 +18349,10 @@
18349
18349
  (function () {
18350
18350
  var internals = {
18351
18351
  bundleType: 1,
18352
- version: "19.3.0-canary-0972e239-20251118",
18352
+ version: "19.3.0-canary-eb89912e-20251118",
18353
18353
  rendererPackageName: "react-art",
18354
18354
  currentDispatcherRef: ReactSharedInternals,
18355
- reconcilerVersion: "19.3.0-canary-0972e239-20251118"
18355
+ reconcilerVersion: "19.3.0-canary-eb89912e-20251118"
18356
18356
  };
18357
18357
  internals.overrideHookState = overrideHookState;
18358
18358
  internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -18384,7 +18384,7 @@
18384
18384
  exports.Shape = Shape;
18385
18385
  exports.Surface = Surface;
18386
18386
  exports.Text = Text;
18387
- exports.version = "19.3.0-canary-0972e239-20251118";
18387
+ exports.version = "19.3.0-canary-eb89912e-20251118";
18388
18388
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
18389
18389
  "function" ===
18390
18390
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -1664,9 +1664,9 @@ function createChildReconciler(shouldTrackSideEffects) {
1664
1664
  }
1665
1665
  function mapRemainingChildren(currentFirstChild) {
1666
1666
  for (var existingChildren = new Map(); null !== currentFirstChild; )
1667
- null !== currentFirstChild.key
1668
- ? existingChildren.set(currentFirstChild.key, currentFirstChild)
1669
- : existingChildren.set(currentFirstChild.index, currentFirstChild),
1667
+ null === currentFirstChild.key
1668
+ ? existingChildren.set(currentFirstChild.index, currentFirstChild)
1669
+ : existingChildren.set(currentFirstChild.key, currentFirstChild),
1670
1670
  (currentFirstChild = currentFirstChild.sibling);
1671
1671
  return existingChildren;
1672
1672
  }
@@ -2041,10 +2041,9 @@ function createChildReconciler(shouldTrackSideEffects) {
2041
2041
  )),
2042
2042
  null !== nextOldFiber &&
2043
2043
  (shouldTrackSideEffects &&
2044
- null !== nextOldFiber.alternate &&
2045
- oldFiber.delete(
2046
- null === nextOldFiber.key ? newIdx : nextOldFiber.key
2047
- ),
2044
+ ((newFiber = nextOldFiber.alternate),
2045
+ null !== newFiber &&
2046
+ oldFiber.delete(null === newFiber.key ? newIdx : newFiber.key)),
2048
2047
  (currentFirstChild = placeChild(
2049
2048
  nextOldFiber,
2050
2049
  currentFirstChild,
@@ -2119,8 +2118,11 @@ function createChildReconciler(shouldTrackSideEffects) {
2119
2118
  (step = updateFromMap(oldFiber, returnFiber, newIdx, step.value, lanes)),
2120
2119
  null !== step &&
2121
2120
  (shouldTrackSideEffects &&
2122
- null !== step.alternate &&
2123
- oldFiber.delete(null === step.key ? newIdx : step.key),
2121
+ ((nextOldFiber = step.alternate),
2122
+ null !== nextOldFiber &&
2123
+ oldFiber.delete(
2124
+ null === nextOldFiber.key ? newIdx : nextOldFiber.key
2125
+ )),
2124
2126
  (currentFirstChild = placeChild(step, currentFirstChild, newIdx)),
2125
2127
  null === previousNewFiber
2126
2128
  ? (resultingFirstChild = step)
@@ -9855,10 +9857,10 @@ var slice = Array.prototype.slice,
9855
9857
  })(React.Component);
9856
9858
  var internals$jscomp$inline_1470 = {
9857
9859
  bundleType: 0,
9858
- version: "19.3.0-canary-0972e239-20251118",
9860
+ version: "19.3.0-canary-eb89912e-20251118",
9859
9861
  rendererPackageName: "react-art",
9860
9862
  currentDispatcherRef: ReactSharedInternals,
9861
- reconcilerVersion: "19.3.0-canary-0972e239-20251118"
9863
+ reconcilerVersion: "19.3.0-canary-eb89912e-20251118"
9862
9864
  };
9863
9865
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
9864
9866
  var hook$jscomp$inline_1471 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -9884,4 +9886,4 @@ exports.RadialGradient = RadialGradient;
9884
9886
  exports.Shape = TYPES.SHAPE;
9885
9887
  exports.Surface = Surface;
9886
9888
  exports.Text = Text;
9887
- exports.version = "19.3.0-canary-0972e239-20251118";
9889
+ exports.version = "19.3.0-canary-eb89912e-20251118";
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-eb89912e-20251118",
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-eb89912e-20251118"
28
28
  },
29
29
  "peerDependencies": {
30
- "react": "19.3.0-canary-0972e239-20251118"
30
+ "react": "19.3.0-canary-eb89912e-20251118"
31
31
  },
32
32
  "files": [
33
33
  "LICENSE",