react-pixi-fiber 1.0.1 → 1.0.3
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/CHANGELOG.md +17 -1
- package/cjs/react-pixi-fiber.development.js +4 -2
- package/cjs/react-pixi-fiber.production.min.js +2 -2
- package/cjs/react-pixi-fiber.production.min.js.map +1 -1
- package/es/react-pixi-fiber.development.js +5 -3
- package/es/react-pixi-fiber.production.min.js +2 -2
- package/es/react-pixi-fiber.production.min.js.map +1 -1
- package/package.json +1 -1
- package/src/ReactPixiFiber.js +3 -1
- package/src/render.js +2 -1
- package/umd/react-pixi-fiber.development.js +4 -2
- package/umd/react-pixi-fiber.production.min.js +2 -2
- package/umd/react-pixi-fiber.production.min.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
9
9
|
## [Unreleased]
|
|
10
10
|
|
|
11
11
|
|
|
12
|
+
## [1.0.3] - 2022-10-11
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Fixed reconciler to check that container exists before calling `removeChildren` ([#286])
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [1.0.2] - 2022-09-01
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Fixed ES build by replacing inline require with regular import ([#283])
|
|
22
|
+
|
|
23
|
+
|
|
12
24
|
## [1.0.1] - 2022-08-02
|
|
13
25
|
|
|
14
26
|
### Fixed
|
|
@@ -412,7 +424,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
412
424
|
- Added `<TilingSprite />` component
|
|
413
425
|
|
|
414
426
|
|
|
415
|
-
[Unreleased]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.
|
|
427
|
+
[Unreleased]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.3...HEAD
|
|
428
|
+
[1.0.3]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.3...v1.0.3
|
|
429
|
+
[1.0.2]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.1...v1.0.2
|
|
416
430
|
[1.0.1]: https://github.com/michalochman/react-pixi-fiber/compare/v1.0.0...v1.0.1
|
|
417
431
|
[1.0.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.3...v1.0.0
|
|
418
432
|
[0.14.2]: https://github.com/michalochman/react-pixi-fiber/compare/v0.14.1...v0.14.2
|
|
@@ -461,6 +475,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
461
475
|
[0.2.0]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.1...v0.2.0
|
|
462
476
|
[0.1.1]: https://github.com/michalochman/react-pixi-fiber/compare/v0.1.0...v0.1.1
|
|
463
477
|
|
|
478
|
+
[#286]: https://github.com/michalochman/react-pixi-fiber/pull/286
|
|
479
|
+
[#283]: https://github.com/michalochman/react-pixi-fiber/pull/283
|
|
464
480
|
[#277]: https://github.com/michalochman/react-pixi-fiber/pull/277
|
|
465
481
|
[#227]: https://github.com/michalochman/react-pixi-fiber/issues/227
|
|
466
482
|
[#225]: https://github.com/michalochman/react-pixi-fiber/issues/225
|
|
@@ -21408,7 +21408,9 @@ function cancelTimeout(id) {
|
|
|
21408
21408
|
clearTimeout(id);
|
|
21409
21409
|
}
|
|
21410
21410
|
function clearContainer(container) {
|
|
21411
|
-
container
|
|
21411
|
+
if (container) {
|
|
21412
|
+
container.removeChildren();
|
|
21413
|
+
}
|
|
21412
21414
|
}
|
|
21413
21415
|
function commitMount(instance, type, props, internalHandle) {
|
|
21414
21416
|
{
|
|
@@ -21479,7 +21481,7 @@ var ReactPixiFiberAsSecondaryRenderer = ReactFiberReconciler(_objectSpread2(_obj
|
|
|
21479
21481
|
var unstable_batchedUpdates = ReactPixiFiberAsPrimaryRenderer.batchedUpdates;
|
|
21480
21482
|
|
|
21481
21483
|
function getDevToolsVersion() {
|
|
21482
|
-
return
|
|
21484
|
+
return React.version;
|
|
21483
21485
|
}
|
|
21484
21486
|
var roots = new Map();
|
|
21485
21487
|
/*
|