@sohanemon/utils 4.1.15 → 4.1.16
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/dist/functions/index.d.ts +1 -1
- package/package.json +7 -21
|
@@ -208,4 +208,4 @@ export declare const mergeRefs: MergeRefs;
|
|
|
208
208
|
*
|
|
209
209
|
* @example goToClientSideHash('my-element');
|
|
210
210
|
*/
|
|
211
|
-
export declare function goToClientSideHash(id: string, opts
|
|
211
|
+
export declare function goToClientSideHash(id: string, opts?: ScrollIntoViewOptions): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sohanemon/utils",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.16",
|
|
4
4
|
"author": "Sohan Emon <sohanemon@outlook.com>",
|
|
5
5
|
"description": "",
|
|
6
6
|
"type": "module",
|
|
@@ -15,33 +15,19 @@
|
|
|
15
15
|
},
|
|
16
16
|
"typesVersions": {
|
|
17
17
|
"*": {
|
|
18
|
-
"core": [
|
|
19
|
-
|
|
20
|
-
],
|
|
21
|
-
"
|
|
22
|
-
"dist/types/index.d.ts"
|
|
23
|
-
],
|
|
24
|
-
"hooks": [
|
|
25
|
-
"dist/hooks/index.d.ts"
|
|
26
|
-
],
|
|
27
|
-
"components": [
|
|
28
|
-
"dist/components/index.d.ts"
|
|
29
|
-
]
|
|
18
|
+
"core": ["dist/index.d.ts"],
|
|
19
|
+
"types": ["dist/types/index.d.ts"],
|
|
20
|
+
"hooks": ["dist/hooks/index.d.ts"],
|
|
21
|
+
"components": ["dist/components/index.d.ts"]
|
|
30
22
|
}
|
|
31
23
|
},
|
|
32
|
-
"files": [
|
|
33
|
-
"dist",
|
|
34
|
-
"README.md"
|
|
35
|
-
],
|
|
24
|
+
"files": ["dist", "README.md"],
|
|
36
25
|
"scripts": {
|
|
37
26
|
"build": "tsc",
|
|
38
27
|
"build:watch": "tsc --watch",
|
|
39
28
|
"export": "tsc && npm publish"
|
|
40
29
|
},
|
|
41
|
-
"keywords": [
|
|
42
|
-
"utils",
|
|
43
|
-
"cn"
|
|
44
|
-
],
|
|
30
|
+
"keywords": ["utils", "cn"],
|
|
45
31
|
"license": "ISC",
|
|
46
32
|
"devDependencies": {
|
|
47
33
|
"@types/node": "^22.4.0",
|