@souscheflabs/reanimated-flashlist 0.1.9 → 0.1.10

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @souschef/reanimated-flashlist
1
+ # @souscheflabs/reanimated-flashlist
2
2
 
3
3
  A high-performance animated FlashList with drag-to-reorder and entry/exit animations for React Native.
4
4
 
@@ -15,7 +15,7 @@ A high-performance animated FlashList with drag-to-reorder and entry/exit animat
15
15
 
16
16
  ### From npm (when published)
17
17
  ```bash
18
- npm install @souschef/reanimated-flashlist
18
+ npm install @souscheflabs/reanimated-flashlist
19
19
  ```
20
20
 
21
21
  ### From GitHub (private repo)
@@ -34,7 +34,7 @@ Or add to `package.json`:
34
34
  ```json
35
35
  {
36
36
  "dependencies": {
37
- "@souschef/reanimated-flashlist": "github:SousChefLabs/reanimated-flashlist#v0.1.1"
37
+ "@souscheflabs/reanimated-flashlist": "github:SousChefLabs/reanimated-flashlist#v0.1.1"
38
38
  }
39
39
  }
40
40
  ```
@@ -57,7 +57,7 @@ npm install @shopify/flash-list react-native-reanimated react-native-gesture-han
57
57
  ## Quick Start
58
58
 
59
59
  ```tsx
60
- import { AnimatedFlashList, type AnimatedListItem } from '@souschef/reanimated-flashlist';
60
+ import { AnimatedFlashList, type AnimatedListItem } from '@souscheflabs/reanimated-flashlist';
61
61
  import { GestureDetector } from 'react-native-gesture-handler';
62
62
 
63
63
  interface MyItem extends AnimatedListItem {
@@ -261,7 +261,7 @@ import {
261
261
  useDragAnimatedStyle,
262
262
  useListExitAnimation,
263
263
  useListEntryAnimation,
264
- } from '@souschef/reanimated-flashlist';
264
+ } from '@souscheflabs/reanimated-flashlist';
265
265
  ```
266
266
 
267
267
  ### Context Providers
@@ -274,7 +274,7 @@ import {
274
274
  ListAnimationProvider,
275
275
  useDragState,
276
276
  useListAnimation,
277
- } from '@souschef/reanimated-flashlist';
277
+ } from '@souscheflabs/reanimated-flashlist';
278
278
  ```
279
279
 
280
280
  ## License
package/lib/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @souschef/reanimated-flashlist
2
+ * @souscheflabs/reanimated-flashlist
3
3
  *
4
4
  * A high-performance animated FlashList with drag-to-reorder and entry/exit animations.
5
5
  *
@@ -8,7 +8,7 @@
8
8
  * import {
9
9
  * AnimatedFlashList,
10
10
  * type AnimatedListItem,
11
- * } from '@souschef/reanimated-flashlist';
11
+ * } from '@souscheflabs/reanimated-flashlist';
12
12
  *
13
13
  * interface MyItem extends AnimatedListItem {
14
14
  * title: string;
package/lib/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**
3
- * @souschef/reanimated-flashlist
3
+ * @souscheflabs/reanimated-flashlist
4
4
  *
5
5
  * A high-performance animated FlashList with drag-to-reorder and entry/exit animations.
6
6
  *
@@ -9,7 +9,7 @@
9
9
  * import {
10
10
  * AnimatedFlashList,
11
11
  * type AnimatedListItem,
12
- * } from '@souschef/reanimated-flashlist';
12
+ * } from '@souscheflabs/reanimated-flashlist';
13
13
  *
14
14
  * interface MyItem extends AnimatedListItem {
15
15
  * title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@souscheflabs/reanimated-flashlist",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "A high-performance animated FlashList with drag-to-reorder and entry/exit animations (New Architecture)",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.js",
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @souschef/reanimated-flashlist
2
+ * @souscheflabs/reanimated-flashlist
3
3
  *
4
4
  * A high-performance animated FlashList with drag-to-reorder and entry/exit animations.
5
5
  *
@@ -8,7 +8,7 @@
8
8
  * import {
9
9
  * AnimatedFlashList,
10
10
  * type AnimatedListItem,
11
- * } from '@souschef/reanimated-flashlist';
11
+ * } from '@souscheflabs/reanimated-flashlist';
12
12
  *
13
13
  * interface MyItem extends AnimatedListItem {
14
14
  * title: string;