mirror of
https://github.com/bendtherules/react-fiber-traverse.git
synced 2026-08-18 22:01:49 +00:00
Compare commits
6
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
30bd38a2b9 | ||
|
|
fdfd267d95 | ||
|
|
c2a6000887 | ||
|
|
473d7cc38e | ||
|
|
1efcb67c56 | ||
|
|
f10c17bd53 |
@@ -22,3 +22,7 @@
|
||||
11. Allow easy way to continue FiberNode select with CSS selector for dom node (handling Fragments)
|
||||
|
||||
12. Helper and filter by props and state
|
||||
|
||||
13. Fix es5, downLevelIteration with generator iteration
|
||||
14. Tests for match
|
||||
15. **Catch throw in generator**
|
||||
Generated
+6
-12
@@ -5441,12 +5441,6 @@
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"ini": {
|
||||
"version": "1.3.5",
|
||||
"bundled": true,
|
||||
"dev": true,
|
||||
"optional": true
|
||||
},
|
||||
"is-fullwidth-code-point": {
|
||||
"version": "1.0.0",
|
||||
"bundled": true,
|
||||
@@ -6014,9 +6008,9 @@
|
||||
}
|
||||
},
|
||||
"handlebars": {
|
||||
"version": "4.1.2",
|
||||
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz",
|
||||
"integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==",
|
||||
"version": "4.5.3",
|
||||
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.5.3.tgz",
|
||||
"integrity": "sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"neo-async": "^2.6.0",
|
||||
@@ -6523,9 +6517,9 @@
|
||||
"dev": true
|
||||
},
|
||||
"ini": {
|
||||
"version": "1.3.5",
|
||||
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz",
|
||||
"integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==",
|
||||
"version": "1.3.7",
|
||||
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.7.tgz",
|
||||
"integrity": "sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ==",
|
||||
"dev": true
|
||||
},
|
||||
"inquirer": {
|
||||
|
||||
@@ -44,16 +44,6 @@ export interface FiberNodeForInstrinsicElement {
|
||||
stateNode: HTMLElement;
|
||||
}
|
||||
|
||||
export interface FiberNodeForInstrinsicElement {
|
||||
child: FiberNode | null;
|
||||
sibling: FiberNode | null;
|
||||
|
||||
elementType: keyof JSX.IntrinsicElements;
|
||||
type: keyof JSX.IntrinsicElements;
|
||||
|
||||
stateNode: HTMLElement;
|
||||
}
|
||||
|
||||
export interface FiberNodeForTextNode {
|
||||
child: null;
|
||||
sibling: FiberNode | null;
|
||||
|
||||
Reference in New Issue
Block a user