@legendapp/list 3.0.0-beta.31 → 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 (55) hide show
  1. package/.DS_Store +0 -0
  2. package/README.md +7 -1
  3. package/animated.d.ts +600 -6
  4. package/animated.js +2 -2
  5. package/animated.mjs +1 -1
  6. package/index.d.ts +462 -109
  7. package/index.js +290 -147
  8. package/index.mjs +290 -147
  9. package/index.native.js +245 -122
  10. package/index.native.mjs +246 -123
  11. package/keyboard-controller.d.ts +611 -6
  12. package/keyboard-controller.js +2 -2
  13. package/keyboard-controller.mjs +1 -1
  14. package/keyboard.d.ts +204 -8
  15. package/keyboard.js +66 -52
  16. package/keyboard.mjs +69 -54
  17. package/{index.d.mts → list-react-native.d.ts} +103 -33
  18. package/list-react-native.js +4234 -0
  19. package/list-react-native.mjs +4204 -0
  20. package/{index.native.d.mts → list-react.d.ts} +363 -41
  21. package/list-react.js +4426 -0
  22. package/list-react.mjs +4396 -0
  23. package/package.json +52 -1
  24. package/reanimated.d.ts +595 -7
  25. package/reanimated.js +156 -11
  26. package/reanimated.mjs +153 -8
  27. package/section-list.d.ts +610 -14
  28. package/section-list.js +6 -6
  29. package/section-list.mjs +1 -1
  30. package/animated.d.mts +0 -9
  31. package/animated.native.d.mts +0 -9
  32. package/animated.native.d.ts +0 -9
  33. package/animated.native.js +0 -9
  34. package/animated.native.mjs +0 -7
  35. package/index.native.d.ts +0 -810
  36. package/keyboard-controller.d.mts +0 -12
  37. package/keyboard-controller.native.d.mts +0 -12
  38. package/keyboard-controller.native.d.ts +0 -12
  39. package/keyboard-controller.native.js +0 -69
  40. package/keyboard-controller.native.mjs +0 -48
  41. package/keyboard.d.mts +0 -13
  42. package/keyboard.native.d.mts +0 -13
  43. package/keyboard.native.d.ts +0 -13
  44. package/keyboard.native.js +0 -399
  45. package/keyboard.native.mjs +0 -377
  46. package/reanimated.d.mts +0 -18
  47. package/reanimated.native.d.mts +0 -18
  48. package/reanimated.native.d.ts +0 -18
  49. package/reanimated.native.js +0 -89
  50. package/reanimated.native.mjs +0 -65
  51. package/section-list.d.mts +0 -112
  52. package/section-list.native.d.mts +0 -112
  53. package/section-list.native.d.ts +0 -112
  54. package/section-list.native.js +0 -293
  55. 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 };