Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .changeset/fix-branching-visibility-criteria.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/js-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @frigade/js

## 0.9.8

### Patch Changes

- 9bbb311: Fix branching forms with `visibilityCriteria`: after completing a step whose form data hides the optimistically-chosen next step, the client now sends `STARTED_STEP` for the actual current step from the refreshed state instead of the now-hidden one. Previously this caused the server's `currentStepId` to flip back to the hidden step and the form to re-render it. Preserves the `STARTED_STEP`-on-complete behavior introduced in `@frigade/js@0.9.7`.

## 0.9.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/js-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@frigade/js",
"version": "0.9.7",
"version": "0.9.8",
"description": "The official Javascript SDK for Frigade.",
"type": "module",
"main": "./dist/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @frigade/react

## 2.10.4

### Patch Changes

- 9bbb311: Fix branching forms with `visibilityCriteria`: after completing a step whose form data hides the optimistically-chosen next step, the client now sends `STARTED_STEP` for the actual current step from the refreshed state instead of the now-hidden one. Previously this caused the server's `currentStepId` to flip back to the hidden step and the form to re-render it. Preserves the `STARTED_STEP`-on-complete behavior introduced in `@frigade/js@0.9.7`.
- Updated dependencies [9bbb311]
- @frigade/js@0.9.8

## 2.10.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@frigade/react",
"version": "2.10.3",
"version": "2.10.4",
"description": "Build better product onboarding, faster.",
"type": "module",
"main": "./dist/index.js",
Expand Down Expand Up @@ -51,7 +51,7 @@
"dependencies": {
"@emotion/react": "^11.14.0",
"@floating-ui/react": "^0.26.22",
"@frigade/js": "^0.9.7",
"@frigade/js": "^0.9.8",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
Expand Down
Loading