diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-01 23:33:28 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-01 23:33:28 +0800 |
commit | 11869122b4fe00c834347f9911985d7b2572bc9b (patch) | |
tree | 23d03a04d17e0f15bad126945aa8c01d5becb923 /packages/react-docs | |
parent | 9b24459108c826843cfddb377e66327e11b1d85b (diff) | |
download | dexon-sol-tools-11869122b4fe00c834347f9911985d7b2572bc9b.tar dexon-sol-tools-11869122b4fe00c834347f9911985d7b2572bc9b.tar.gz dexon-sol-tools-11869122b4fe00c834347f9911985d7b2572bc9b.tar.bz2 dexon-sol-tools-11869122b4fe00c834347f9911985d7b2572bc9b.tar.lz dexon-sol-tools-11869122b4fe00c834347f9911985d7b2572bc9b.tar.xz dexon-sol-tools-11869122b4fe00c834347f9911985d7b2572bc9b.tar.zst dexon-sol-tools-11869122b4fe00c834347f9911985d7b2572bc9b.zip |
Update React-scroll, getting rid of the need to manually set the url hash
Diffstat (limited to 'packages/react-docs')
-rw-r--r-- | packages/react-docs/package.json | 4 | ||||
-rw-r--r-- | packages/react-docs/src/components/signature.tsx | 2 | ||||
-rw-r--r-- | packages/react-docs/src/components/type.tsx | 1 |
3 files changed, 4 insertions, 3 deletions
diff --git a/packages/react-docs/package.json b/packages/react-docs/package.json index e8db040be..c95051bde 100644 --- a/packages/react-docs/package.json +++ b/packages/react-docs/package.json @@ -41,7 +41,7 @@ "@types/node": "^8.0.53", "@types/react": "*", "@types/react-dom": "*", - "@types/react-scroll": "0.0.31", + "@types/react-scroll": "1.5.3", "basscss": "^8.0.3", "compare-versions": "^3.0.1", "lodash": "^4.17.4", @@ -49,7 +49,7 @@ "react": "15.6.1", "react-dom": "15.6.1", "react-markdown": "^3.2.2", - "react-scroll": "^1.5.2", + "react-scroll": "^1.7.10", "react-tooltip": "^3.2.7", "semver": "5.5.0" }, diff --git a/packages/react-docs/src/components/signature.tsx b/packages/react-docs/src/components/signature.tsx index 77e9cc909..5f28050d2 100644 --- a/packages/react-docs/src/components/signature.tsx +++ b/packages/react-docs/src/components/signature.tsx @@ -27,7 +27,7 @@ const defaultProps = { }; export const Signature: React.SFC<SignatureProps> = (props: SignatureProps) => { - const sectionName = constants.TYPES_SECTION_NAME; + const sectionName = props.sectionName; const parameters = renderParameters(props.parameters, props.docsInfo, sectionName, props.typeDefinitionByName); const paramStringArray: any[] = []; // HACK: For now we don't put params on newlines if there are less then 2 of them. diff --git a/packages/react-docs/src/components/type.tsx b/packages/react-docs/src/components/type.tsx index e453349ef..04fcd9998 100644 --- a/packages/react-docs/src/components/type.tsx +++ b/packages/react-docs/src/components/type.tsx @@ -182,6 +182,7 @@ export function Type(props: TypeProps): any { <ScrollLink to={typeDefinitionAnchorId} offset={0} + hashSpy={true} duration={sharedConstants.DOCS_SCROLL_DURATION_MS} containerId={sharedConstants.DOCS_CONTAINER_ID} > |