Skip to content

Commit 68fa5dc

Browse files
authored
Merge pull request #31 from josias-r/maintenance
Maintenance
2 parents 276b12f + fe40669 commit 68fa5dc

13 files changed

Lines changed: 5205 additions & 9017 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.12.0]
15+
node-version: [22.14.0]
1616

1717
steps:
1818
- uses: actions/checkout@v3

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 22.14.0

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# [3.6.0](https://github.com/josias-r/boarding.js/compare/v3.5.2...v3.6.0) (2024-09-16)
2+
3+
4+
### Bug Fixes
5+
6+
* fix defaults from constants being ignored ([a721c92](https://github.com/josias-r/boarding.js/commit/a721c92318b03de28958f4e45bc70cf66373f7bb))
7+
8+
9+
### Features
10+
11+
* add overlay color option to Boarding class ([ab2a2f9](https://github.com/josias-r/boarding.js/commit/ab2a2f95235848bbe76f998746bd124754373df5))
12+
13+
## [3.5.2](https://github.com/josias-r/boarding.js/compare/v3.5.1...v3.5.2) (2023-03-23)
14+
15+
16+
### Bug Fixes
17+
18+
* fix bug breaking single-element highlight w/out popover ([92d7bfb](https://github.com/josias-r/boarding.js/commit/92d7bfba2ee28f8ff63a5b5769dd692bec593f7a))
19+
120
## [3.5.1](https://github.com/josias-r/boarding.js/compare/v3.5.0...v3.5.1) (2023-03-21)
221

322

index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ <h1 class="brand">
114114
</blockquote>
115115
<blockquote>
116116
<p>
117-
A lightweight (~4kb gzipped) yet powerful JavaScript engine that helps
118-
you drive the user's focus on page.
117+
A lightweight (~7.5kb gzipped) yet powerful JavaScript engine that
118+
helps you drive the user's focus on page.
119119
</p>
120120
<p class="zero-bottom">
121121
Some sample use-cases can be creating powerful feature introductions,
@@ -155,7 +155,7 @@ <h3>What are the features?</h3>
155155
use
156156
</li>
157157
<li id="lightweight_feature">
158-
🕊️ Lightweight – Only <strong>~4kb</strong> when gzipped
158+
🕊️ Lightweight – Only <strong>~7.5kb</strong> when gzipped
159159
</li>
160160
<li id="major_browsers_feature">
161161
🌀 <strong>Consistent behavior</strong> across all major browsers
@@ -642,10 +642,11 @@ <h4>Boarding Definition</h4>
642642
<pre><code class="javascript">const boarding = new Boarding({
643643
className: 'scoped-class', // className to wrap boarding.js popover
644644
animate: true, // Animate while changing highlighted element
645-
opacity: 0.75, // Background opacity (0 means only popovers and without overlay)
645+
opacity: 0.75, // Overlay opacity (0 means only popovers and without overlay)
646646
padding: 10, // Distance of element from around the edges
647647
allowClose: true, // Whether clicking on overlay should close or not
648648
overlayClickNext: false, // Should it move to next step on overlay click
649+
overlayColor: 'rgb(0,0,0)', // Fill color for the overlay
649650
doneBtnText: 'Done', // Text on the final button
650651
closeBtnText: 'Close', // Text on the close button for this step
651652
nextBtnText: 'Next', // Next button text for this step

0 commit comments

Comments
 (0)