Andrew Peacock
Andrew Peacock
Currently my logic is.. renderItem={(item, text) => ( {item.title} - {item.category} - ({item.availableQuantity}{" "} available) )} This works just fine! However, category and available quantity don't pass Typescript sniffs because...
Currently my logic is.. renderItem={(item, text) => ( {item.title} - {item.category} - ({item.availableQuantity}{" "} available) )} This works just fine! However, category and available quantity don't pass Typescript sniffs because...
### Describe the feature you'd like to request I'm curious on the status and activity of this repo. Seems to have a lot of open PRs and no communication in...
I've been searching for a nice firebase starter either nextjs or tanstack start. I avoided this repo out the rip because it said nextjs-13. Finally took a look at the...
I would love the ability to have RC extension call my functions after webhook events are captured. Scenario: User's subscription has ended.. Update customer & events tables in FB, then...
**Is your feature request related to a problem? Please describe.** I would love to see a feature where the tree-sorting can happen through a provided search string, this would allow...
**Describe the bug** Using the default playground provided here - https://codesandbox.io/p/sandbox/react-complex-tree-playground-u5tjs you can lose access to items by dragging folders under pages. **To Reproduce** Expand the "Desserts" option. Drag Cookie...
**Describe the bug** I'm copying demo items and demo uncontrolled tree and it does not function. **To Reproduce** ``` import { StaticTreeDataProvider, Tree, UncontrolledTreeEnvironment, } from "react-complex-tree"; import "react-complex-tree/lib/style-modern.css"; const...
I'd love to see a single hook to react to all tree changes. Use case - I want the tree to handle add move delete rename internally, because quite frankly...
Desired functionality: I would love to provide the class an isLeaf function of something like.. ``` {(node) => !node.children || node.children.length === 0} ``` This would allow me to negate...