@legendapp/list 1.0.0-beta.18 → 1.0.0-beta.19
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/index.js +2 -2
- package/index.mjs +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -368,7 +368,7 @@ var Containers = typedMemo(function Containers2({
|
|
|
368
368
|
const containers = [];
|
|
369
369
|
for (let i = 0; i < numContainers; i++) {
|
|
370
370
|
containers.push(
|
|
371
|
-
/* @__PURE__ */
|
|
371
|
+
/* @__PURE__ */ React6__namespace.createElement(
|
|
372
372
|
Container,
|
|
373
373
|
{
|
|
374
374
|
id: i,
|
|
@@ -383,7 +383,7 @@ var Containers = typedMemo(function Containers2({
|
|
|
383
383
|
);
|
|
384
384
|
}
|
|
385
385
|
const style = horizontal ? { width: animSize, opacity: animOpacity } : { height: animSize, opacity: animOpacity };
|
|
386
|
-
return /* @__PURE__ */
|
|
386
|
+
return /* @__PURE__ */ React6__namespace.createElement(reactNative.Animated.View, { style }, containers);
|
|
387
387
|
});
|
|
388
388
|
|
|
389
389
|
// src/ListComponent.tsx
|
package/index.mjs
CHANGED
|
@@ -347,7 +347,7 @@ var Containers = typedMemo(function Containers2({
|
|
|
347
347
|
const containers = [];
|
|
348
348
|
for (let i = 0; i < numContainers; i++) {
|
|
349
349
|
containers.push(
|
|
350
|
-
/* @__PURE__ */
|
|
350
|
+
/* @__PURE__ */ React6.createElement(
|
|
351
351
|
Container,
|
|
352
352
|
{
|
|
353
353
|
id: i,
|
|
@@ -362,7 +362,7 @@ var Containers = typedMemo(function Containers2({
|
|
|
362
362
|
);
|
|
363
363
|
}
|
|
364
364
|
const style = horizontal ? { width: animSize, opacity: animOpacity } : { height: animSize, opacity: animOpacity };
|
|
365
|
-
return /* @__PURE__ */
|
|
365
|
+
return /* @__PURE__ */ React6.createElement(Animated.View, { style }, containers);
|
|
366
366
|
});
|
|
367
367
|
|
|
368
368
|
// src/ListComponent.tsx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@legendapp/list",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.19",
|
|
4
4
|
"description": "Legend List aims to be a drop-in replacement for FlatList with much better performance and supporting dynamically sized items.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"private": false,
|