Skip to content

Commit 6dbf293

Browse files
github-actions[bot]prosdev
authored andcommitted
chore: release packages
1 parent df2c286 commit 6dbf293

File tree

5 files changed

+35
-26
lines changed

5 files changed

+35
-26
lines changed

.changeset/feat-banner-pushdown.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

packages/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @prosdevlab/experience-sdk
22

3+
## 0.1.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [df2c286]
8+
- @prosdevlab/experience-sdk-plugins@0.1.4
9+
310
## 0.1.4
411

512
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosdevlab/experience-sdk",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "A lightweight, explainable client-side experience runtime",
55
"private": false,
66
"type": "module",

packages/plugins/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# @prosdevlab/experience-sdk-plugins
22

3+
## 0.1.4
4+
5+
### Patch Changes
6+
7+
- df2c286: feat(banner): add pushDown option to push content down instead of overlay
8+
9+
Add optional `pushDown` config to banner plugin that allows top banners to smoothly push page content down (add margin-top) instead of overlaying it.
10+
11+
**Usage:**
12+
13+
```typescript
14+
init({
15+
banner: {
16+
position: "top",
17+
pushDown: "header", // CSS selector of element to push down
18+
},
19+
});
20+
```
21+
22+
**Benefits:**
23+
24+
- Opt-in feature (default behavior unchanged)
25+
- Smooth transition with CSS animations
26+
- Improves UX for sticky navigation
27+
- Automatically removes margin when banner is dismissed
28+
329
## 0.1.3
430

531
### Patch Changes

packages/plugins/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@prosdevlab/experience-sdk-plugins",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Official plugins for Experience SDK",
55
"private": false,
66
"type": "module",

0 commit comments

Comments
 (0)