Skip to content

Commit

Permalink
Merge pull request #406 from alvarotrigo/dev
Browse files Browse the repository at this point in the history
- Fixed bug: moveTo api requires both section and slide #405
  • Loading branch information
alvarotrigo authored Mar 22, 2023
2 parents a743a3e + e5b1f3a commit 55500d0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<p align="center">Official React wrapper for the <a target="_blank" href="https://github.com/alvarotrigo/fullPage.js/">fullpage.js library</a></p>

<p align="center">
<img src="https://img.shields.io/badge/react--fullpage-v0.1.36-brightgreen.svg" alt="react-fullpage version" />
<img src="https://img.shields.io/badge/react--fullpage-v0.1.37-brightgreen.svg" alt="react-fullpage version" />
</p>

- [Demo online](https://alvarotrigo.com/react-fullpage/) | [CodeSandbox](https://codesandbox.io/s/m34yq5q0qx)
Expand Down
2 changes: 1 addition & 1 deletion dist/react-fullpage-umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/react-fullpage.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/gatsby/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"serve": "export SET NODE_OPTIONS=--openssl-legacy-provider && gatsby serve"
},
"dependencies": {
"@fullpage/react-fullpage": "^0.1.36",
"@fullpage/react-fullpage": "^0.1.37",
"gatsby": "^4.22.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "cmswalker",
"license": "GPL-3.0",
"dependencies": {
"@fullpage/react-fullpage": "^0.1.36",
"@fullpage/react-fullpage": "^0.1.37",
"next": "^12.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fullpage/react-fullpage",
"version": "0.1.36",
"version": "0.1.37",
"description": "Official react wrapper for fullPage.js",
"author": "cmswalker",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ declare module '@fullpage/react-fullpage' {
moveSectionUp(): void
moveSlideLeft(): void
moveSlideRight(): void
moveTo(section: string | number, slide: string | number): void
moveTo(section: string | number, slide?: string | number): void
reBuild(isResizing?: boolean): void
setAllowScrolling(value: boolean, directions?: string): void
setAutoScrolling(value: boolean, type?: string): void
Expand Down

0 comments on commit 55500d0

Please sign in to comment.