@grantpearceuk/hooks 0.1.1 → 1.0.1
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/lib/cjs/useDarkMode/index.d.ts +1 -1
- package/lib/cjs/useDeepCompareEffect/index.d.ts +1 -1
- package/lib/cjs/useFetch/index.js +1 -1
- package/lib/cjs/useGenerateHtmlId/index.d.ts +1 -1
- package/lib/cjs/useGenerateHtmlId/index.js +1 -1
- package/lib/cjs/useStorage/index.d.ts +1 -1
- package/lib/esm/useDarkMode/index.d.ts +1 -1
- package/lib/esm/useDeepCompareEffect/index.d.ts +1 -1
- package/lib/esm/useFetch/index.js +1 -1
- package/lib/esm/useGenerateHtmlId/index.d.ts +1 -1
- package/lib/esm/useGenerateHtmlId/index.js +1 -1
- package/lib/esm/useStorage/index.d.ts +1 -1
- package/package.json +23 -30
@@ -1,2 +1,2 @@
|
|
1
|
-
export
|
1
|
+
export type Dependencies = [unknown] | [];
|
2
2
|
export default function useDeepCompareEffect(callback: () => void, dependencies?: Dependencies): void;
|
@@ -25,7 +25,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
25
25
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
26
26
|
function step(op) {
|
27
27
|
if (f) throw new TypeError("Generator is already executing.");
|
28
|
-
while (_) try {
|
28
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
29
29
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
30
30
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
31
31
|
switch (op[0]) {
|
@@ -4,6 +4,6 @@ var react_1 = require("react");
|
|
4
4
|
var counter = 0;
|
5
5
|
var useGenerateHtmlId = function () {
|
6
6
|
var id = (0, react_1.useMemo)(function () { return ++counter; }, []);
|
7
|
-
return function (suffix) { return "id"
|
7
|
+
return function (suffix) { return "id".concat(id, "_").concat(suffix); };
|
8
8
|
};
|
9
9
|
exports.default = useGenerateHtmlId;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Dispatch } from "react";
|
2
|
-
|
2
|
+
type StorageObject = [value: any, setValue: Dispatch<unknown>, remove: () => void];
|
3
3
|
export declare function useLocalStorage(key: string, defaultValue?: any): StorageObject;
|
4
4
|
export declare function useSessionStorage(key: string, defaultValue?: any): StorageObject;
|
5
5
|
export {};
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export
|
1
|
+
export type Dependencies = [unknown] | [];
|
2
2
|
export default function useDeepCompareEffect(callback: () => void, dependencies?: Dependencies): void;
|
@@ -24,7 +24,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
24
24
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
25
25
|
function step(op) {
|
26
26
|
if (f) throw new TypeError("Generator is already executing.");
|
27
|
-
while (_) try {
|
27
|
+
while (g && (g = 0, op[0] && (_ = 0)), _) try {
|
28
28
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
29
29
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
30
30
|
switch (op[0]) {
|
@@ -2,6 +2,6 @@ import { useMemo } from "react";
|
|
2
2
|
var counter = 0;
|
3
3
|
var useGenerateHtmlId = function () {
|
4
4
|
var id = useMemo(function () { return ++counter; }, []);
|
5
|
-
return function (suffix) { return "id"
|
5
|
+
return function (suffix) { return "id".concat(id, "_").concat(suffix); };
|
6
6
|
};
|
7
7
|
export default useGenerateHtmlId;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Dispatch } from "react";
|
2
|
-
|
2
|
+
type StorageObject = [value: any, setValue: Dispatch<unknown>, remove: () => void];
|
3
3
|
export declare function useLocalStorage(key: string, defaultValue?: any): StorageObject;
|
4
4
|
export declare function useSessionStorage(key: string, defaultValue?: any): StorageObject;
|
5
5
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@grantpearceuk/hooks",
|
3
|
-
"version": "0.1
|
3
|
+
"version": "1.0.1",
|
4
4
|
"main": "./lib/cjs/index.js",
|
5
5
|
"module": "./lib/esm/index.js",
|
6
6
|
"types": "./lib/esm/index.d.ts",
|
@@ -12,38 +12,31 @@
|
|
12
12
|
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
|
13
13
|
"publish-public": "npm publish --access public"
|
14
14
|
},
|
15
|
+
"files": [
|
16
|
+
"/lib"
|
17
|
+
],
|
15
18
|
"dependencies": {
|
16
|
-
"
|
17
|
-
"@testing-library/jest-dom": "^5.14.1",
|
18
|
-
"@testing-library/react": "^11.2.7",
|
19
|
-
"@testing-library/user-event": "^12.8.3",
|
20
|
-
"copy-to-clipboard": "^3.3.1",
|
19
|
+
"copy-to-clipboard": "^3.3.3",
|
21
20
|
"js-cookie": "^3.0.1",
|
22
21
|
"lodash": "^4.17.21",
|
23
|
-
"react
|
24
|
-
"
|
25
|
-
"
|
22
|
+
"react": "^18.2.0",
|
23
|
+
"react-dom": "^18.2.0",
|
24
|
+
"react-scripts": "^5.0.1",
|
25
|
+
"standard-version": "^9.5.0"
|
26
26
|
},
|
27
27
|
"devDependencies": {
|
28
|
-
"@
|
29
|
-
"@types/
|
30
|
-
"@types/
|
31
|
-
"@types/
|
32
|
-
"@types/react": "^
|
33
|
-
"@types/react-dom": "^
|
34
|
-
"@typescript-eslint/eslint-plugin": "^
|
35
|
-
"@typescript-eslint/parser": "^
|
36
|
-
"eslint": "^
|
37
|
-
"eslint-config-prettier": "^8.
|
38
|
-
"eslint-plugin-prettier": "^4.
|
39
|
-
"prettier": "^2.4
|
40
|
-
"typescript": "^4.
|
41
|
-
}
|
42
|
-
"peerDependencies": {
|
43
|
-
"react": "^17.0.2",
|
44
|
-
"react-dom": "^17.0.2"
|
45
|
-
},
|
46
|
-
"files": [
|
47
|
-
"/lib"
|
48
|
-
]
|
28
|
+
"@types/jest": "^29.4.0",
|
29
|
+
"@types/js-cookie": "^3.0.2",
|
30
|
+
"@types/lodash": "^4.14.191",
|
31
|
+
"@types/node": "^18.13.0",
|
32
|
+
"@types/react": "^18.0.28",
|
33
|
+
"@types/react-dom": "^18.0.11",
|
34
|
+
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
35
|
+
"@typescript-eslint/parser": "^5.52.0",
|
36
|
+
"eslint": "^8.34.0",
|
37
|
+
"eslint-config-prettier": "^8.6.0",
|
38
|
+
"eslint-plugin-prettier": "^4.2.1",
|
39
|
+
"prettier": "^2.8.4",
|
40
|
+
"typescript": "^4.9.5"
|
41
|
+
}
|
49
42
|
}
|