morphing-scroll 2.2.13 → 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.
Files changed (2) hide show
  1. package/package.json +7 -3
  2. package/types/index.d.ts +4 -4
package/package.json CHANGED
@@ -1,14 +1,18 @@
1
1
  {
2
2
  "name": "morphing-scroll",
3
- "version": "2.2.13",
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
- "import": "./esm/index.js",
11
- "require": "./cjs/index.js"
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
@@ -110,15 +110,15 @@ declare const IntersectionTracker: React.FC<IntersectionTrackerT>;
110
110
  declare const MorphScroll: React.FC<MorphScrollT>;
111
111
 
112
112
  /**
113
- * ### Morph - all contents of the library〈♦〉
113
+ * ### Morph - all content of the library〈♦〉
114
114
  */
115
115
  declare const Morph: {
116
116
  /** See `MorphScroll` */
117
- MorphScroll: typeof MorphScroll;
117
+ MorphScroll: React.FC<MorphScrollT>;
118
118
  /** See `ResizeTracker` */
119
- ResizeTracker: typeof ResizeTracker;
119
+ ResizeTracker: React.FC<ResizeTrackerT>;
120
120
  /** See `IntersectionTracker` */
121
- IntersectionTracker: typeof IntersectionTracker;
121
+ IntersectionTracker: React.FC<IntersectionTrackerT>;
122
122
  };
123
123
 
124
124
  export { MorphScroll, ResizeTracker, IntersectionTracker };