morphing-scroll 2.2.12 → 2.2.14
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/package.json +7 -3
- package/types/index.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "morphing-scroll",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.14",
|
|
4
4
|
"description": "React library for custom object scrolling and scrollbar styling〈♦〉",
|
|
5
5
|
"author": "Georg Schilin",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "./cjs/index.js",
|
|
8
8
|
"module": "./esm/index.js",
|
|
9
9
|
"exports": {
|
|
10
|
-
"
|
|
11
|
-
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./esm/index.js",
|
|
12
|
+
"require": "./cjs/index.js",
|
|
13
|
+
"types": "./types/index.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./package.json": "./package.json"
|
|
12
16
|
},
|
|
13
17
|
"types": "./types/index.d.ts",
|
|
14
18
|
"keywords": [
|
package/types/index.d.ts
CHANGED
|
@@ -109,9 +109,15 @@ declare const IntersectionTracker: React.FC<IntersectionTrackerT>;
|
|
|
109
109
|
|
|
110
110
|
declare const MorphScroll: React.FC<MorphScrollT>;
|
|
111
111
|
|
|
112
|
+
/**
|
|
113
|
+
* ### Morph - all content of the library〈♦〉
|
|
114
|
+
*/
|
|
112
115
|
declare const Morph: {
|
|
116
|
+
/** See `MorphScroll` */
|
|
113
117
|
MorphScroll: React.FC<MorphScrollT>;
|
|
118
|
+
/** See `ResizeTracker` */
|
|
114
119
|
ResizeTracker: React.FC<ResizeTrackerT>;
|
|
120
|
+
/** See `IntersectionTracker` */
|
|
115
121
|
IntersectionTracker: React.FC<IntersectionTrackerT>;
|
|
116
122
|
};
|
|
117
123
|
|