react.js-nested-tree
Advanced tools
Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "react.js-nested-tree", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"main": "dist/cjs/index.js", | ||
@@ -5,0 +5,0 @@ "description": "This is react.js nested tree component", |
@@ -9,20 +9,12 @@ # react.js-nested-tree | ||
├── src/ | ||
| |__ components | ||
| | ├── index.js | ||
| | └── treeList | ||
| | ├── index.js | ||
| | ├── TreeList.tsx | ||
| | ├── item | ||
| | ├── tree | ||
| | └── types | ||
│ |__ index.ts | ||
│ ├── assets | ||
│ ├── TreeItems.tsx | ||
│ │── index.ts | ||
| │── App.tsx | ||
| └── App.css | ||
│ | ||
├── dist/ | ||
├── .gitignore | ||
├── package.json | ||
├── README.md | ||
├── rollup.config.js | ||
├── package-lock.json | ||
├── .npmignore | ||
└── LICENSE | ||
└── .gitignore | ||
``` | ||
@@ -34,35 +26,20 @@ | ||
{ | ||
"name": "react.js-nested-tree", | ||
"version": "1.0.0", | ||
"main": "dist/cjs/index.js", | ||
"description": "This is tree list react component", | ||
"files": ["dist"], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/react-js-package/react.js-nested-tree.git" | ||
}, | ||
"types": "dist/index.d.ts", | ||
"name": "react_nested-tree", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"rollup": "rollup -c --bundleConfigAsCjs" | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"preview": "vite preview" | ||
}, | ||
"keywords": ["tree", "list", "nested", "hierarchy", "React"], | ||
"author": "Anas Alkhamis", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^26.0.1", | ||
"@rollup/plugin-node-resolve": "^15.2.3", | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"@rollup/plugin-typescript": "^11.1.6", | ||
"@types/react": "^18.3.3", | ||
"react": "^18.3.1", | ||
"rollup": "^4.18.0", | ||
"rollup-plugin-dts": "^6.1.1", | ||
"rollup-plugin-peer-deps-external": "^2.2.4", | ||
"tslib": "^2.6.3", | ||
"typescript": "^5.4.5" | ||
"dependencies": { | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react.js-nested-tree": "^1.0.0" | ||
}, | ||
"peerDependencies": { | ||
"react": "^18.0.0" | ||
} | ||
} | ||
``` | ||
@@ -153,6 +130,2 @@ | ||
} | ||
.info_container { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
.info_box { | ||
@@ -159,0 +132,0 @@ display: flex; |
22274
431