Skip to content

Commit 309ba95

Browse files
authored
Merge pull request #392 from alvarotrigo/dev
Merging dev branch 0.1.33
2 parents 5a5e515 + c01fdf3 commit 309ba95

File tree

8 files changed

+28
-21
lines changed

8 files changed

+28
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<p align="center">Official React wrapper for the <a target="_blank" href="https://github.com/alvarotrigo/fullPage.js/">fullpage.js library</a></p>
66

77
<p align="center">
8-
<img src="https://img.shields.io/badge/react--fullpage-v0.1.32-brightgreen.svg" alt="react-fullpage version" />
8+
<img src="https://img.shields.io/badge/react--fullpage-v0.1.33-brightgreen.svg" alt="react-fullpage version" />
99
</p>
1010

1111
- [Demo online](https://alvarotrigo.com/react-fullpage/) | [CodeSandbox](https://codesandbox.io/s/m34yq5q0qx)

dist/react-fullpage-umd.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/react-fullpage.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/gatsby/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"serve": "export SET NODE_OPTIONS=--openssl-legacy-provider && gatsby serve"
99
},
1010
"dependencies": {
11-
"@fullpage/react-fullpage": "^0.1.32",
11+
"@fullpage/react-fullpage": "^0.1.33",
1212
"gatsby": "^4.22.1",
1313
"react": "^18.1.0",
1414
"react-dom": "^18.1.0"

examples/next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"author": "cmswalker",
1212
"license": "GPL-3.0",
1313
"dependencies": {
14-
"@fullpage/react-fullpage": "^0.1.32",
14+
"@fullpage/react-fullpage": "^0.1.33",
1515
"next": "^12.1.6",
1616
"react": "^18.1.0",
1717
"react-dom": "^18.1.0"

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@
6868
},
6969
"dependencies": {
7070
"@babel/polyfill": "^7.2.5",
71-
"fullpage.js": "^4.0.16"
71+
"fullpage.js": "^4.0.17"
7272
}
7373
}

types/index.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ declare module '@fullpage/react-fullpage' {
3030
type?: "reveal" | "cover"
3131
};
3232

33+
type Credits = {
34+
enabled?: boolean,
35+
label?: string,
36+
position?: "left" | "right"
37+
}
38+
3339
export interface fullpageOptions {
3440
anchors?: string[]
3541
animateAnchor?: boolean
@@ -52,6 +58,7 @@ declare module '@fullpage/react-fullpage' {
5258
keyboardScrolling?: boolean
5359
lazyLoading?: boolean
5460
licenseKey?: string
61+
credits: Credits
5562
lockAnchors?: boolean
5663
loopBottom?: boolean
5764
loopHorizontal?: boolean

0 commit comments

Comments
 (0)