@legendapp/list 3.0.0-beta.32 → 3.0.0-beta.33

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.
Files changed (54) hide show
  1. package/README.md +7 -1
  2. package/animated.d.ts +600 -6
  3. package/animated.js +2 -2
  4. package/animated.mjs +1 -1
  5. package/index.d.ts +454 -108
  6. package/index.js +81 -32
  7. package/index.mjs +81 -32
  8. package/index.native.js +89 -44
  9. package/index.native.mjs +88 -43
  10. package/keyboard-controller.d.ts +611 -6
  11. package/keyboard-controller.js +2 -2
  12. package/keyboard-controller.mjs +1 -1
  13. package/keyboard.d.ts +204 -8
  14. package/keyboard.js +66 -52
  15. package/keyboard.mjs +69 -54
  16. package/{index.d.mts → list-react-native.d.ts} +95 -32
  17. package/list-react-native.js +4234 -0
  18. package/list-react-native.mjs +4204 -0
  19. package/{index.native.d.mts → list-react.d.ts} +355 -40
  20. package/list-react.js +4426 -0
  21. package/list-react.mjs +4396 -0
  22. package/package.json +52 -1
  23. package/reanimated.d.ts +595 -7
  24. package/reanimated.js +156 -11
  25. package/reanimated.mjs +153 -8
  26. package/section-list.d.ts +610 -14
  27. package/section-list.js +6 -6
  28. package/section-list.mjs +1 -1
  29. package/animated.d.mts +0 -9
  30. package/animated.native.d.mts +0 -9
  31. package/animated.native.d.ts +0 -9
  32. package/animated.native.js +0 -9
  33. package/animated.native.mjs +0 -7
  34. package/index.native.d.ts +0 -817
  35. package/keyboard-controller.d.mts +0 -12
  36. package/keyboard-controller.native.d.mts +0 -12
  37. package/keyboard-controller.native.d.ts +0 -12
  38. package/keyboard-controller.native.js +0 -69
  39. package/keyboard-controller.native.mjs +0 -48
  40. package/keyboard.d.mts +0 -13
  41. package/keyboard.native.d.mts +0 -13
  42. package/keyboard.native.d.ts +0 -13
  43. package/keyboard.native.js +0 -399
  44. package/keyboard.native.mjs +0 -377
  45. package/reanimated.d.mts +0 -18
  46. package/reanimated.native.d.mts +0 -18
  47. package/reanimated.native.d.ts +0 -18
  48. package/reanimated.native.js +0 -89
  49. package/reanimated.native.mjs +0 -65
  50. package/section-list.d.mts +0 -112
  51. package/section-list.native.d.mts +0 -112
  52. package/section-list.native.d.ts +0 -112
  53. package/section-list.native.js +0 -293
  54. package/section-list.native.mjs +0 -271
package/section-list.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  import { Platform } from 'react-native';
3
- import { typedMemo, typedForwardRef, LegendList } from '@legendapp/list';
3
+ import { typedMemo, typedForwardRef, LegendList } from '@legendapp/list/react-native';
4
4
 
5
5
  // src/section-list/SectionList.tsx
6
6
 
package/animated.d.mts DELETED
@@ -1,9 +0,0 @@
1
- import * as _legendapp_list from '@legendapp/list';
2
- import * as React from 'react';
3
- import { Animated } from 'react-native';
4
-
5
- declare const AnimatedLegendList: Animated.AnimatedComponent<(<T>(props: _legendapp_list.LegendListProps<T> & React.RefAttributes<_legendapp_list.LegendListRef>) => React.ReactNode) & {
6
- displayName?: string;
7
- }>;
8
-
9
- export { AnimatedLegendList };
@@ -1,9 +0,0 @@
1
- import * as _legendapp_list from '@legendapp/list';
2
- import * as React from 'react';
3
- import { Animated } from 'react-native';
4
-
5
- declare const AnimatedLegendList: Animated.AnimatedComponent<(<T>(props: _legendapp_list.LegendListProps<T> & React.RefAttributes<_legendapp_list.LegendListRef>) => React.ReactNode) & {
6
- displayName?: string;
7
- }>;
8
-
9
- export { AnimatedLegendList };
@@ -1,9 +0,0 @@
1
- import * as _legendapp_list from '@legendapp/list';
2
- import * as React from 'react';
3
- import { Animated } from 'react-native';
4
-
5
- declare const AnimatedLegendList: Animated.AnimatedComponent<(<T>(props: _legendapp_list.LegendListProps<T> & React.RefAttributes<_legendapp_list.LegendListRef>) => React.ReactNode) & {
6
- displayName?: string;
7
- }>;
8
-
9
- export { AnimatedLegendList };
@@ -1,9 +0,0 @@
1
- 'use strict';
2
-
3
- var reactNative = require('react-native');
4
- var list = require('@legendapp/list');
5
-
6
- // src/integrations/animated.tsx
7
- var AnimatedLegendList = reactNative.Animated.createAnimatedComponent(list.LegendList);
8
-
9
- exports.AnimatedLegendList = AnimatedLegendList;
@@ -1,7 +0,0 @@
1
- import { Animated } from 'react-native';
2
- import { LegendList } from '@legendapp/list';
3
-
4
- // src/integrations/animated.tsx
5
- var AnimatedLegendList = Animated.createAnimatedComponent(LegendList);
6
-
7
- export { AnimatedLegendList };