@pdg/react-admin-layout 1.0.51 → 1.0.53
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/@common/index.d.ts +1 -1
- package/dist/@common/useChange.d.ts +1 -0
- package/dist/CardLayout/CardLayout.d.ts +1 -3
- package/dist/DefaultLayout/DefaultLayout.d.ts +1 -3
- package/dist/DefaultLayout/DefaultLayout.types.d.ts +1 -33
- package/dist/index.esm.js +896 -769
- package/dist/index.js +896 -769
- package/package.json +3 -2
- package/dist/@common/useChanged.d.ts +0 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@pdg/react-admin-layout",
|
|
3
3
|
"title": "React Admin Layout",
|
|
4
4
|
"description": "Admin Layout for React",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.53",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"module": "./dist/index.esm.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dev": "cd examples && npm run dev",
|
|
32
32
|
"watchman:del": "watchman watch-del \"${PWD}\" ; watchman watch-project \"${PWD}\"",
|
|
33
33
|
"build:examples": "cd examples && npm run build",
|
|
34
|
-
"build": "npm run watchman:del && npm run lint && rollup -c --bundleConfigAsCjs",
|
|
34
|
+
"build": "npm run watchman:del && npm run tsc && npm run lint && rollup -c --bundleConfigAsCjs",
|
|
35
35
|
"git:commit": "node .git-commit.cjs",
|
|
36
36
|
"git:push": "git push",
|
|
37
37
|
"git:commit:push": "npm run git:commit && npm run git:push",
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
"reset:gitignore": "git rm -r --cached . && git add .",
|
|
40
40
|
"pub": "npm i && npm run build:examples && npm run build && npm publish --access=public && rm ./.git/hooks/pre-commit",
|
|
41
41
|
"lint": "eslint './src/**/*.{ts,tsx}'",
|
|
42
|
+
"tsc": "tsc --noEmit",
|
|
42
43
|
"reinstall": "npm run reinstall:module",
|
|
43
44
|
"reinstall:module": "rm -rf node_modules && rm -f package-lock.json && npm i"
|
|
44
45
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const useChanged: (value: any, callback: () => void) => void;
|