mirror of
https://github.com/bendtherules/react-fiber-traverse.git
synced 2026-08-18 22:01:49 +00:00
Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82dde826e1 | ||
|
|
fdfd267d95 | ||
|
|
c2a6000887 | ||
|
|
473d7cc38e | ||
|
|
1efcb67c56 |
@@ -25,3 +25,4 @@
|
|||||||
|
|
||||||
13. Fix es5, downLevelIteration with generator iteration
|
13. Fix es5, downLevelIteration with generator iteration
|
||||||
14. Tests for match
|
14. Tests for match
|
||||||
|
15. **Catch throw in generator**
|
||||||
Generated
+6
-6
@@ -6014,9 +6014,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"handlebars": {
|
"handlebars": {
|
||||||
"version": "4.1.2",
|
"version": "4.5.3",
|
||||||
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.5.3.tgz",
|
||||||
"integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==",
|
"integrity": "sha512-3yPecJoJHK/4c6aZhSvxOyG4vJKDshV36VHp0iVCDVh7o9w2vwi3NSnL2MMPj3YdduqaBcu7cGbggJQM0br9xA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"neo-async": "^2.6.0",
|
"neo-async": "^2.6.0",
|
||||||
@@ -10917,9 +10917,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"shelljs": {
|
"shelljs": {
|
||||||
"version": "0.8.3",
|
"version": "0.8.5",
|
||||||
"resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.3.tgz",
|
"resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.5.tgz",
|
||||||
"integrity": "sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==",
|
"integrity": "sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"glob": "^7.0.0",
|
"glob": "^7.0.0",
|
||||||
|
|||||||
+1
-1
@@ -114,7 +114,7 @@
|
|||||||
"rollup-plugin-size-snapshot": "0.9.0",
|
"rollup-plugin-size-snapshot": "0.9.0",
|
||||||
"rollup-plugin-sourcemaps": "0.4.2",
|
"rollup-plugin-sourcemaps": "0.4.2",
|
||||||
"rollup-plugin-terser": "5.1.1",
|
"rollup-plugin-terser": "5.1.1",
|
||||||
"shelljs": "0.8.3",
|
"shelljs": "0.8.5",
|
||||||
"shelljs-plugin-authors": "2.0.10",
|
"shelljs-plugin-authors": "2.0.10",
|
||||||
"ts-jest": "24.0.2",
|
"ts-jest": "24.0.2",
|
||||||
"typedoc": "^0.15.0",
|
"typedoc": "^0.15.0",
|
||||||
|
|||||||
@@ -44,16 +44,6 @@ export interface FiberNodeForInstrinsicElement {
|
|||||||
stateNode: HTMLElement;
|
stateNode: HTMLElement;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FiberNodeForInstrinsicElement {
|
|
||||||
child: FiberNode | null;
|
|
||||||
sibling: FiberNode | null;
|
|
||||||
|
|
||||||
elementType: keyof JSX.IntrinsicElements;
|
|
||||||
type: keyof JSX.IntrinsicElements;
|
|
||||||
|
|
||||||
stateNode: HTMLElement;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface FiberNodeForTextNode {
|
export interface FiberNodeForTextNode {
|
||||||
child: null;
|
child: null;
|
||||||
sibling: FiberNode | null;
|
sibling: FiberNode | null;
|
||||||
|
|||||||
Reference in New Issue
Block a user