@tracktor/shared-module 0.18.1 → 0.18.2

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/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # [Versions](https://github.com/Tracktor/shared-module/releases)
2
2
 
3
- ## v0.18.1
4
- - **[fix]** : export filePathAdapter
3
+ ## v0.18.2
4
+ - **[fix]** : export entry point
@@ -3,5 +3,5 @@
3
3
  * @param path
4
4
  * @param size - full or number for thumbs
5
5
  */
6
- export declare const filePathAdapter: (path?: string | null, size?: number | "full") => string;
6
+ declare const filePathAdapter: (path?: string | null, size?: number | "full") => string;
7
7
  export default filePathAdapter;
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ useInfiniteDataGrid: (path?: string | null | undefined, size?: number | "full" | undefined) => string;
3
+ };
4
+ export default _default;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@tracktor/shared-module",
3
- "version": "0.18.1",
3
+ "version": "0.18.2",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
- "types": "./dist/main.d.ts",
6
+ "types": "./dist/src/main.d.ts",
7
7
  "main": "./dist/main.umd.cjs",
8
8
  "module": "./dist/main.js",
9
9
  "engines": {
@@ -15,7 +15,8 @@
15
15
  "exports": {
16
16
  ".": {
17
17
  "import": "./dist/main.js",
18
- "require": "./dist/main.umd.cjs"
18
+ "require": "./dist/main.umd.cjs",
19
+ "types": "./dist/src/main.d.ts"
19
20
  }
20
21
  },
21
22
  "repository": {