Full Code of shipshapecode/shepherd for AI

main 850d298cf75a cached
190 files
669.1 KB
188.0k tokens
177 symbols
1 requests
Download .txt
Showing preview only (719K chars total). Download the full file or copy to clipboard to get everything.
Repository: shipshapecode/shepherd
Branch: main
Commit: 850d298cf75a
Files: 190
Total size: 669.1 KB

Directory structure:
gitextract_xaiikd27/

├── .browserslistrc
├── .eslintignore
├── .eslintrc.js
├── .github/
│   ├── CODEOWNERS
│   ├── dependabot.yml
│   ├── stale.yml
│   └── workflows/
│       ├── plan-release.yml
│       ├── publish.yml
│       └── test.yml
├── .gitignore
├── .nojekyll
├── .prettierrc.js
├── .release-plan.json
├── .tool-versions
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md
├── RELEASE.md
├── docs-src/
│   ├── .dockerignore
│   ├── .gitignore
│   ├── .vscode/
│   │   ├── extensions.json
│   │   └── launch.json
│   ├── Dockerfile
│   ├── README.md
│   ├── astro.config.mjs
│   ├── fly.toml
│   ├── package.json
│   ├── src/
│   │   ├── components/
│   │   │   ├── HeadWithPosthog.astro
│   │   │   └── Posthog.astro
│   │   ├── content/
│   │   │   ├── config.ts
│   │   │   └── docs/
│   │   │       ├── api/
│   │   │       │   └── README.md
│   │   │       ├── guides/
│   │   │       │   ├── analytics.mdx
│   │   │       │   ├── install.mdx
│   │   │       │   ├── license.mdx
│   │   │       │   ├── styling.md
│   │   │       │   └── usage.md
│   │   │       └── recipes/
│   │   │           ├── cookbook.md
│   │   │           └── react.md
│   │   ├── env.d.ts
│   │   └── pages/
│   │       └── index.astro
│   └── tsconfig.json
├── landing/
│   ├── .gitignore
│   ├── .vscode/
│   │   ├── extensions.json
│   │   └── launch.json
│   ├── README.md
│   ├── astro.config.mjs
│   ├── package.json
│   ├── public/
│   │   ├── CNAME
│   │   └── favicons/
│   │       └── site.webmanifest
│   ├── src/
│   │   ├── components/
│   │   │   ├── ArticleCard.astro
│   │   │   ├── BaseHead.astro
│   │   │   ├── Footer.astro
│   │   │   ├── FormattedDate.astro
│   │   │   ├── GithubButton.astro
│   │   │   ├── Header.astro
│   │   │   ├── HeaderLink.astro
│   │   │   ├── Icon.astro
│   │   │   └── Posthog.astro
│   │   ├── consts.ts
│   │   ├── content/
│   │   │   ├── blog/
│   │   │   │   ├── alpha-launch-pro.md
│   │   │   │   ├── secret-handshakes-hidden-passages.md
│   │   │   │   ├── shepherd-the-product.md
│   │   │   │   └── tale-of-frameworks.md
│   │   │   └── config.ts
│   │   ├── env.d.ts
│   │   ├── layouts/
│   │   │   ├── Base.astro
│   │   │   ├── BlogPost.astro
│   │   │   └── MainPage.astro
│   │   ├── lib/
│   │   │   └── github.ts
│   │   ├── pages/
│   │   │   ├── api/
│   │   │   │   └── checkout.ts
│   │   │   ├── blog/
│   │   │   │   ├── [...slug].astro
│   │   │   │   └── index.astro
│   │   │   ├── index.astro
│   │   │   ├── pricing.astro
│   │   │   └── rss.xml.js
│   │   └── styles/
│   │       ├── fonts.css
│   │       ├── prism.css
│   │       ├── shepherd.css
│   │       └── styles.css
│   └── tsconfig.json
├── package.json
├── packages/
│   └── react/
│       ├── .gitignore
│       ├── CHANGELOG.md
│       ├── README.md
│       ├── package.json
│       ├── src/
│       │   └── index.tsx
│       ├── test/
│       │   ├── index.test.tsx
│       │   └── setup.ts
│       ├── tsconfig.json
│       ├── vite.config.ts
│       └── vitest.config.ts
├── pnpm-workspace.yaml
├── shepherd.js/
│   ├── .attw.json
│   ├── .eslintignore
│   ├── .eslintrc.cjs
│   ├── .gitignore
│   ├── .prettierignore
│   ├── babel.config.cjs
│   ├── cypress/
│   │   └── downloads/
│   │       └── downloads.html
│   ├── dev/
│   │   ├── assets/
│   │   │   └── favicons/
│   │   │       ├── browserconfig.xml
│   │   │       └── manifest.json
│   │   ├── css/
│   │   │   ├── fonts.css
│   │   │   ├── prism.css
│   │   │   └── welcome.css
│   │   ├── index.html
│   │   └── js/
│   │       └── prism.js
│   ├── dummy/
│   │   ├── assets/
│   │   │   └── favicons/
│   │   │       ├── browserconfig.xml
│   │   │       └── manifest.json
│   │   ├── css/
│   │   │   ├── fonts.css
│   │   │   ├── prism.css
│   │   │   └── welcome.css
│   │   ├── index.html
│   │   └── js/
│   │       └── prism.js
│   ├── eslint.config.js
│   ├── package.json
│   ├── rollup.config.mjs
│   ├── src/
│   │   ├── components/
│   │   │   ├── shepherd-button.css
│   │   │   ├── shepherd-button.ts
│   │   │   ├── shepherd-cancel-icon.css
│   │   │   ├── shepherd-cancel-icon.ts
│   │   │   ├── shepherd-content.css
│   │   │   ├── shepherd-content.ts
│   │   │   ├── shepherd-element.css
│   │   │   ├── shepherd-element.ts
│   │   │   ├── shepherd-footer.css
│   │   │   ├── shepherd-footer.ts
│   │   │   ├── shepherd-header.css
│   │   │   ├── shepherd-header.ts
│   │   │   ├── shepherd-modal.css
│   │   │   ├── shepherd-modal.ts
│   │   │   ├── shepherd-text.css
│   │   │   ├── shepherd-text.ts
│   │   │   ├── shepherd-title.css
│   │   │   └── shepherd-title.ts
│   │   ├── evented.ts
│   │   ├── shepherd.ts
│   │   ├── step.ts
│   │   ├── tour.ts
│   │   └── utils/
│   │       ├── auto-bind.ts
│   │       ├── bind.ts
│   │       ├── cleanup.ts
│   │       ├── dom.ts
│   │       ├── floating-ui.ts
│   │       ├── general.ts
│   │       ├── overlay-path.ts
│   │       └── type-check.ts
│   ├── test/
│   │   ├── cypress/
│   │   │   ├── .gitignore
│   │   │   ├── cypress.config.js
│   │   │   ├── dummy/
│   │   │   │   ├── assets/
│   │   │   │   │   └── favicons/
│   │   │   │   │       ├── browserconfig.xml
│   │   │   │   │       └── manifest.json
│   │   │   │   ├── css/
│   │   │   │   │   ├── fonts.css
│   │   │   │   │   ├── prism.css
│   │   │   │   │   └── welcome.css
│   │   │   │   ├── index.html
│   │   │   │   └── js/
│   │   │   │       └── prism.js
│   │   │   ├── examples/
│   │   │   │   ├── css/
│   │   │   │   │   ├── no-css-import.html
│   │   │   │   │   └── with-css-import.html
│   │   │   │   └── destroying-elements.html
│   │   │   ├── integration/
│   │   │   │   ├── a11y.cy.js
│   │   │   │   ├── css.cy.js
│   │   │   │   ├── destroying-elements.cy.js
│   │   │   │   ├── element-targeting.cy.js
│   │   │   │   ├── modal.cy.js
│   │   │   │   └── test.acceptance.cy.js
│   │   │   ├── support/
│   │   │   │   ├── commands.js
│   │   │   │   └── index.js
│   │   │   └── utils/
│   │   │       ├── default-buttons.js
│   │   │       ├── default-steps.js
│   │   │       └── setup-tour.js
│   │   └── unit/
│   │       ├── babel.config.cjs
│   │       ├── components/
│   │       │   ├── shepherd-button.spec.js
│   │       │   ├── shepherd-content.spec.js
│   │       │   ├── shepherd-element.spec.js
│   │       │   ├── shepherd-footer.spec.js
│   │       │   ├── shepherd-header.spec.js
│   │       │   ├── shepherd-modal.spec.js
│   │       │   ├── shepherd-text.spec.js
│   │       │   └── shepherd-title.spec.js
│   │       ├── evented.spec.js
│   │       ├── server.spec.js
│   │       ├── setupTests.js
│   │       ├── step.spec.js
│   │       ├── tour.spec.js
│   │       └── utils/
│   │           ├── bind.spec.js
│   │           ├── cleanup.spec.js
│   │           └── general.spec.js
│   ├── tsconfig.json
│   └── vitest.config.ts
└── stderr.log

================================================
FILE CONTENTS
================================================

================================================
FILE: .browserslistrc
================================================
# Browsers that we support

last 2 Chrome versions
last 2 Firefox versions
last 2 Safari versions
last 2 Edge versions
Edge 18


================================================
FILE: .eslintignore
================================================
/coverage/
/cypress/dummy/js/prism.js
/dist/
/docs/
/dummy/
/landing/
/site/
/test/cypress/dummy/


================================================
FILE: .eslintrc.js
================================================
module.exports = {
  root: true,
  parserOptions: {
    ecmaVersion: 'latest',
    sourceType: 'module'
  },
  extends: ['eslint:recommended', 'plugin:svelte/recommended'],
  env: {
    browser: true
  },
  rules: {
    'no-console': 'off',
    'prefer-const': 'off'
  },
  overrides: [
    // svelte files
    {
      files: ['**/*.svelte'],
      processor: 'svelte/svelte'
    },
    // Typescript files
    {
      parser: '@typescript-eslint/parser',
      files: ['**/*.ts'],
      plugins: ['@typescript-eslint'],
      extends: ['plugin:@typescript-eslint/recommended'],
      rules: {
        '@typescript-eslint/no-unused-vars': [
          'error',
          { argsIgnorePattern: '^_' }
        ],
        'prefer-rest-params': 'off'
      }
    },
    // node files
    {
      files: [
        '.eslintrc.js',
        '.prettierrc.js',
        'babel.config.js',
        'svelte.config.js',
        'tailwind.config.js'
      ],
      parserOptions: {
        sourceType: 'module',
        ecmaVersion: 2020
      },
      env: {
        node: true
      }
    }
  ]
};


================================================
FILE: .github/CODEOWNERS
================================================
@chuckcarpenter
@RobbieTheWagner


================================================
FILE: .github/dependabot.yml
================================================
version: 2
updates:
- package-ecosystem: npm
  directory: "/"
  schedule:
    interval: daily
    time: "10:00"
  open-pull-requests-limit: 10
  labels:
  - dependencies
  versioning-strategy: increase


================================================
FILE: .github/stale.yml
================================================
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 30
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
  - pinned
  - security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
  This issue has been automatically marked as stale because it has not had
  recent activity. It will be closed if no further activity occurs. Thank you
  for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false

================================================
FILE: .github/workflows/plan-release.yml
================================================
name: Plan Release
on:
  workflow_dispatch:
  push:
    branches:
      - main
      - master
  pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
    types:
      - labeled
      - unlabeled

concurrency:
  group: plan-release # only the latest one of these should ever be running
  cancel-in-progress: true

jobs:
  should-run-release-plan-prepare:
    name: Should we run release-plan prepare?
    runs-on: ubuntu-latest
    outputs:
      should-prepare: ${{ steps.should-prepare.outputs.should-prepare }}
    steps:
      - uses: release-plan/actions/should-prepare-release@v1
        with:
          ref: 'main'
        id: should-prepare

  create-prepare-release-pr:
    name: Create Prepare Release PR
    runs-on: ubuntu-latest
    timeout-minutes: 5
    needs: should-run-release-plan-prepare
    permissions:
      contents: write
      issues: read
      pull-requests: write
    if: needs.should-run-release-plan-prepare.outputs.should-prepare == 'true'
    steps:
      - uses: release-plan/actions/prepare@v1
        name: Run release-plan prepare
        with:
          ref: 'main'
        env:
          GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
        id: explanation

      - uses: peter-evans/create-pull-request@v8
        name: Create Prepare Release PR
        with:
          commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
          labels: "internal"
          sign-commits: true
          branch: release-preview
          title: Prepare Release ${{ steps.explanation.outputs.new-version }}
          body: |
            This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍

            -----------------------------------------

            ${{ steps.explanation.outputs.text }}


================================================
FILE: .github/workflows/publish.yml
================================================
# For every push to the primary branch with .release-plan.json modified,
# runs release-plan.

name: Publish Stable

on:
  workflow_dispatch:
  push:
    branches:
      - main
      - master
    paths:
      - '.release-plan.json'

concurrency:
  group: publish-${{ github.head_ref || github.ref }}
  cancel-in-progress: true

jobs:
  publish:
    name: "NPM Publish"
    runs-on: ubuntu-latest
    permissions:
      contents: write
      id-token: write
      attestations: write

    steps:
      - uses: actions/checkout@v6
      - uses: pnpm/action-setup@v4
      - uses: actions/setup-node@v6
        with:
          node-version: 22
          registry-url: 'https://registry.npmjs.org'
          cache: pnpm
      - run: npm install -g npm@latest # ensure that the globally installed npm is new enough to support OIDC
      - run: pnpm install --frozen-lockfile
      - name: Publish to NPM
        run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
        env:
          GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}


================================================
FILE: .github/workflows/test.yml
================================================
name: CI

on:
  push:
    branches:
      - main
    paths-ignore:
      - 'app/**'
  pull_request:
    paths-ignore:
      - 'app/**'

jobs:
  lint:
    name: Linting
    runs-on: ubuntu-latest

    steps:
      - name: Checkout Repo
        uses: actions/checkout@v4

      - name: Setup pnpm
        uses: wyvox/action-setup-pnpm@v3

      - name: Install dependencies
        run: pnpm install

      - name: Run linting
        run: pnpm lint

  typecheck:
    name: Type Check
    runs-on: ubuntu-latest

    steps:
      - name: Checkout Repo
        uses: actions/checkout@v4

      - name: Setup pnpm
        uses: wyvox/action-setup-pnpm@v3

      - name: Install dependencies
        run: pnpm install

      - name: Check types
        run: pnpm types:check

  test:
    name: Tests
    runs-on: ubuntu-latest

    steps:
      - name: Checkout Repo
        uses: actions/checkout@v4

      - name: Setup pnpm
        uses: wyvox/action-setup-pnpm@v3

      - name: Install Dependencies
        run: pnpm install

      - name: Install Cypress Binary
        run: pnpm cypress:install

      - name: Run Jest/Vitest and Cypress Tests
        uses: cypress-io/github-action@v6
        with:
          command: pnpm test:ci
          install: false
      - name: Upload Coverage to Qlty
        uses: qltysh/qlty-action/coverage@v2
        with:
          token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
          files: shepherd.js/test/coverage/lcov.info
          add-prefix: shepherd.js/


================================================
FILE: .gitignore
================================================
# Editors
/.idea/
/.vscode/

.eslintcache
.nyc_output/
coverage/
dist/
node_modules/

/.log/

/cypress/
/docs/
/site/
/test/unit/dist
*.DS_Store
/.sass-cache
/npm-debug.log*
/stats.html
/yarn-error.log

# app specific 
.DS_Store
.env
.env.local
fly-*.toml
/app/.redwood/*
!.redwood/README.md
dev.db*
dist
dist-babel
node_modules
yarn-error.log
web/public/mockServiceWorker.js
web/types/graphql.d.ts
api/types/graphql.d.ts
api/src/lib/generateGraphiQLHeader.*
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
sendgrid.env

postgres


================================================
FILE: .nojekyll
================================================


================================================
FILE: .prettierrc.js
================================================
'use strict';

module.exports = {
  arrowParens: 'always',
  proseWrap: 'always',
  trailingComma: 'none',
  singleQuote: true,
  plugins: ['prettier-plugin-astro'],
  overrides: [
    {
      files: '*.astro',
      options: {
        parser: 'astro'
      }
    },
    { files: '*.svelte', options: { parser: 'svelte' } }
  ]
};


================================================
FILE: .release-plan.json
================================================
{
  "solution": {
    "react-shepherd": {
      "impact": "patch",
      "oldVersion": "7.0.3",
      "newVersion": "7.0.4",
      "tagName": "latest",
      "constraints": [
        {
          "impact": "patch",
          "reason": "Has dependency `workspace:*` on shepherd.js"
        }
      ],
      "pkgJSONPath": "./packages/react/package.json"
    },
    "shepherd.js": {
      "impact": "patch",
      "oldVersion": "15.2.1",
      "newVersion": "15.2.2",
      "tagName": "latest",
      "constraints": [
        {
          "impact": "patch",
          "reason": "Appears in changelog section :bug: Bug Fix"
        }
      ],
      "pkgJSONPath": "./shepherd.js/package.json"
    }
  },
  "description": "## Release (2026-03-11)\n\n* react-shepherd 7.0.4 (patch)\n* shepherd.js 15.2.2 (patch)\n\n#### :bug: Bug Fix\n* `shepherd.js`\n  * [#3376](https://github.com/shipshapecode/shepherd/pull/3376) Fix missing cancel event when navigating back past a hidden first step ([@Copilot](https://github.com/apps/copilot-swe-agent))\n\n#### Committers: 1\n- Copilot [Bot] ([@copilot-swe-agent](https://github.com/apps/copilot-swe-agent))\n"
}


================================================
FILE: .tool-versions
================================================
nodejs 22.22.0
pnpm 10.28.2


================================================
FILE: CHANGELOG.md
================================================
# Changelog

## Release (2026-03-11)

* react-shepherd 7.0.4 (patch)
* shepherd.js 15.2.2 (patch)

#### :bug: Bug Fix
* `shepherd.js`
  * [#3376](https://github.com/shipshapecode/shepherd/pull/3376) Fix missing cancel event when navigating back past a hidden first step ([@Copilot](https://github.com/apps/copilot-swe-agent))

#### Committers: 1
- Copilot [Bot] ([@copilot-swe-agent](https://github.com/apps/copilot-swe-agent))

## Release (2026-02-23)

* react-shepherd 7.0.3 (patch)
* shepherd.js 15.2.1 (patch)

#### :bug: Bug Fix
* `shepherd.js`
  * [#3373](https://github.com/shipshapecode/shepherd/pull/3373) Use files to reduce what is published to npm ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2026-02-19)

* react-shepherd 7.0.2 (patch)
* shepherd.js 15.2.0 (minor)

#### :rocket: Enhancement
* `shepherd.js`
  * [#3370](https://github.com/shipshapecode/shepherd/pull/3370) Add support for HTML attributes on buttons and cancelIcon ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2026-02-18)

* react-shepherd 7.0.1 (patch)
* shepherd.js 15.1.0 (minor)

#### :rocket: Enhancement
* `shepherd.js`
  * [#3362](https://github.com/shipshapecode/shepherd/pull/3362) Remove string continuations ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#3361](https://github.com/shipshapecode/shepherd/pull/3361) Switch to polar astro package ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2026-02-08)

* react-shepherd 7.0.0 (major)
* shepherd.js 15.0.0 (major)

#### :boom: Breaking Change
* `shepherd.js`
  * [#3352](https://github.com/shipshapecode/shepherd/pull/3352) Remove svelte and use vanilla TS ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
  * [#3342](https://github.com/shipshapecode/shepherd/pull/3342) Drop support for node 18, move tests ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* `react-shepherd`, `shepherd.js`
  * [#3144](https://github.com/shipshapecode/shepherd/pull/3144) Update to Svelte 5 ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :rocket: Enhancement
* `react-shepherd`
  * [#3339](https://github.com/shipshapecode/shepherd/pull/3339) Support React 18+ in peerDeps ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :bug: Bug Fix
* `shepherd.js`
  * [#3351](https://github.com/shipshapecode/shepherd/pull/3351) Restore attachTo tabindex when tour is hidden ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :memo: Documentation
* `react-shepherd`, `shepherd.js`
  * [#3341](https://github.com/shipshapecode/shepherd/pull/3341) More license updates ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* Other
  * [#3340](https://github.com/shipshapecode/shepherd/pull/3340) Update LICENSE.md ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* `shepherd.js`
  * [#3323](https://github.com/shipshapecode/shepherd/pull/3323) Redirect to root when starting demo ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* `react-shepherd`
  * [#3315](https://github.com/shipshapecode/shepherd/pull/3315) Update README example path ([@Poylar](https://github.com/Poylar))

#### :house: Internal
* Other
  * [#3343](https://github.com/shipshapecode/shepherd/pull/3343) Update landing to tailwind 4 ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* `react-shepherd`, `shepherd.js`
  * [#3324](https://github.com/shipshapecode/shepherd/pull/3324) pnpm update ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
  * [#3302](https://github.com/shipshapecode/shepherd/pull/3302) Remove scarf, bump vitest ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 2
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
- [@Poylar](https://github.com/Poylar)

## Release (2025-07-23)

* react-shepherd 6.1.9 (patch)
* shepherd.js 14.5.1 (patch)

#### :bug: Bug Fix
* `shepherd.js`
  * [#3230](https://github.com/shipshapecode/shepherd/pull/3230) Add attachTo elements to the keyboard focus flow ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* `shepherd.js`
  * [#3229](https://github.com/shipshapecode/shepherd/pull/3229) Add dummy app back for development ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2025-02-20)

react-shepherd 6.1.8 (patch)
shepherd.js 14.5.0 (minor)

#### :rocket: Enhancement
* `shepherd-docs`, `shepherd.js`, `cypress-tests`, `unit-tests`
  * [#3051](https://github.com/shipshapecode/shepherd/pull/3051) Allow arrow padding to be configured for a step. ([@JakeThurman](https://github.com/JakeThurman))

#### :house: Internal
* `shepherd-docs`, `landing`, `shepherd.js`, `cypress-tests`, `unit-tests`
  * [#3111](https://github.com/shipshapecode/shepherd/pull/3111) Update to Astro 5.x ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 2
- Jake Thurman ([@JakeThurman](https://github.com/JakeThurman))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2025-01-13)

react-shepherd 6.1.7 (patch)
shepherd.js 14.4.0 (minor)

#### :rocket: Enhancement
* `shepherd.js`
  * [#3068](https://github.com/shipshapecode/shepherd/pull/3068) 💄 Add reset for dialog element ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :bug: Bug Fix
* `shepherd.js`, `cypress-tests`
  * [#3083](https://github.com/shipshapecode/shepherd/pull/3083) ♿ Remove tabindex to reduce tabs for modal trap ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* `landing`
  * [#3089](https://github.com/shipshapecode/shepherd/pull/3089) ⬆ Update Polar SDK and use new API ([@chuckcarpenter](https://github.com/chuckcarpenter))
* Other
  * [#3066](https://github.com/shipshapecode/shepherd/pull/3066) Prepare Release ([@github-actions[bot]](https://github.com/apps/github-actions))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- [@github-actions[bot]](https://github.com/apps/github-actions)






## Release (2024-11-19)

react-shepherd 6.1.6 (patch)
shepherd.js 14.3.0 (minor)

#### :rocket: Enhancement
* `shepherd-docs`, `shepherd.js`, `unit-tests`
  * [#3009](https://github.com/shipshapecode/shepherd/pull/3009) Add 'auto' as placement option ([@patrikholcak](https://github.com/patrikholcak))

#### :house: Internal
* `react-shepherd`, `shepherd.js`
  * [#3035](https://github.com/shipshapecode/shepherd/pull/3035) Prepare Release ([@github-actions[bot]](https://github.com/apps/github-actions))

#### Committers: 2
- Patrik Holčák ([@patrikholcak](https://github.com/patrikholcak))
- [@github-actions[bot]](https://github.com/apps/github-actions)

## Release (2024-11-19)

react-shepherd 6.1.5 (patch)
shepherd.js 14.2.0 (minor)

#### :rocket: Enhancement
* `shepherd-docs`, `shepherd.js`, `unit-tests`
  * [#3009](https://github.com/shipshapecode/shepherd/pull/3009) Add 'auto' as placement option ([@patrikholcak](https://github.com/patrikholcak))

#### Committers: 1
- Patrik Holčák ([@patrikholcak](https://github.com/patrikholcak))

## Release (2024-10-21)

react-shepherd 6.1.4 (patch)
shepherd.js 14.1.0 (minor)

#### :rocket: Enhancement
* `shepherd-docs`, `landing`, `shepherd.js`, `unit-tests`
  * [#2995](https://github.com/shipshapecode/shepherd/pull/2995) Implement multiple element highlighting feature ([@YuunsGit](https://github.com/YuunsGit))

#### :bug: Bug Fix
* `shepherd.js`
  * [#3011](https://github.com/shipshapecode/shepherd/pull/3011) Fix options type for `options.floatingUIOptions` ([@patrikholcak](https://github.com/patrikholcak))

#### :memo: Documentation
* `landing`
  * [#3025](https://github.com/shipshapecode/shepherd/pull/3025) Fix loading on button, add link to root page on logo ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* `landing`
  * [#3025](https://github.com/shipshapecode/shepherd/pull/3025) Fix loading on button, add link to root page on logo ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
  * [#3015](https://github.com/shipshapecode/shepherd/pull/3015) State Fix for Pricing ([@Naman-B-Parlecha](https://github.com/Naman-B-Parlecha))
  * [#3013](https://github.com/shipshapecode/shepherd/pull/3013) 🐛 Change check for DOMContentLoaded to astro:page-load ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 5
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Naman-Parlecha ([@Naman-B-Parlecha](https://github.com/Naman-B-Parlecha))
- Patrik Holčák ([@patrikholcak](https://github.com/patrikholcak))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
- Yunus Emre ([@YuunsGit](https://github.com/YuunsGit))

## Release (2024-10-10)

react-shepherd 6.1.3 (patch)
shepherd.js 14.0.1 (patch)

#### :bug: Bug Fix
* `shepherd.js`, `unit-tests`
  * [#3005](https://github.com/shipshapecode/shepherd/pull/3005) 🐛 Fix issue where passed in custom middleware is overridden ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* [#3003](https://github.com/shipshapecode/shepherd/pull/3003) Prepare Release ([@github-actions[bot]](https://github.com/apps/github-actions))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- [@github-actions[bot]](https://github.com/apps/github-actions)






## Release (2024-10-08)

react-shepherd 6.1.2 (patch)
shepherd.js 14.0.0 (major)

#### :boom: Breaking Change
* `shepherd.js`
  * [#2976](https://github.com/shipshapecode/shepherd/pull/2976) Update license to AGPL-3.0 ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* Other
  * [#2969](https://github.com/shipshapecode/shepherd/pull/2969) 📄 Update license for commercial use cases ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :rocket: Enhancement
* `landing`, `shepherd.js`, `cypress-tests`
  * [#2982](https://github.com/shipshapecode/shepherd/pull/2982) ✨ Update shepherd element to use html dialog ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :bug: Bug Fix
* `landing`, `react-shepherd`
  * [#2988](https://github.com/shipshapecode/shepherd/pull/2988) 🐛 Landing: Fix checkout issue with correct PAT ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd.js`
  * [#2979](https://github.com/shipshapecode/shepherd/pull/2979) Fix handler type for Evented.off() ([@joeldomke](https://github.com/joeldomke))
* `shepherd-docs`, `landing`, `shepherd.js`
  * [#2980](https://github.com/shipshapecode/shepherd/pull/2980) 🐛 Fix event timing issue and add button for demo start ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* `landing`
  * [#2974](https://github.com/shipshapecode/shepherd/pull/2974) Update some various styles ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
  * [#2972](https://github.com/shipshapecode/shepherd/pull/2972) ✨ Add updated pricing page and commerical benefits ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `landing`, `react-shepherd`, `shepherd.js`
  * [#2973](https://github.com/shipshapecode/shepherd/pull/2973) 📝 Update documentation for correct url ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd-docs`
  * [#2967](https://github.com/shipshapecode/shepherd/pull/2967) 📝 Add docs for analytics and react usage ([@chuckcarpenter](https://github.com/chuckcarpenter))
* Other
  * [#2960](https://github.com/shipshapecode/shepherd/pull/2960) 📝 Remove docker info on README ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* Other
  * [#2981](https://github.com/shipshapecode/shepherd/pull/2981) 🔥 Pro: Remove deprecated pro package ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `landing`
  * [#2975](https://github.com/shipshapecode/shepherd/pull/2975) 🐛 Landing: Remove import string from frontmatter ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2968](https://github.com/shipshapecode/shepherd/pull/2968) Landing: 🔥 Remove and upgrade dependencies ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `landing`, `react-shepherd`, `shepherd.js`
  * [#2973](https://github.com/shipshapecode/shepherd/pull/2973) 📝 Update documentation for correct url ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd-docs`
  * [#2967](https://github.com/shipshapecode/shepherd/pull/2967) 📝 Add docs for analytics and react usage ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2966](https://github.com/shipshapecode/shepherd/pull/2966) ⬆ Update Astro to v14.15 ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 3
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Joel Domke ([@joeldomke](https://github.com/joeldomke))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2024-08-05)

@shepherdpro/pro-js 1.3.1 (patch)
react-shepherd 6.1.1 (patch)
shepherd.js 13.0.3 (patch)

#### :house: Internal
* `shepherd-docs`, `landing`
  * [#2944](https://github.com/shipshapecode/shepherd/pull/2944) 🐛 Fix pnpm version in Dockerfiles ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `landing`, `shepherd.js`, `cypress-tests`, `unit-tests`
  * [#2938](https://github.com/shipshapecode/shepherd/pull/2938) ✨ Landing: Add storyblok CMS ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-07-25)

@shepherdpro/pro-js 1.3.0 (minor)
react-shepherd 6.1.0 (minor)

#### :rocket: Enhancement
* `@shepherdpro/pro-js`, `react-shepherd`
  * [#2929](https://github.com/shipshapecode/shepherd/pull/2929) ➖ React: Remove extra pro specific setup ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* `shepherd-docs`
  * [#2928](https://github.com/shipshapecode/shepherd/pull/2928) 📝 Docs updates for pro beta setup/usage ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* `shepherd-docs`
  * [#2928](https://github.com/shipshapecode/shepherd/pull/2928) 📝 Docs updates for pro beta setup/usage ([@chuckcarpenter](https://github.com/chuckcarpenter))
* Other
  * [#2925](https://github.com/shipshapecode/shepherd/pull/2925) Prepare Release ([@github-actions[bot]](https://github.com/apps/github-actions))
  * [#2924](https://github.com/shipshapecode/shepherd/pull/2924) Update publish.yml to have node-registry-url ([@NullVoxPopuli](https://github.com/NullVoxPopuli))

#### Committers: 3
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
- [@github-actions[bot]](https://github.com/apps/github-actions)

## Release (2024-07-24)



#### :house: Internal
* [#2924](https://github.com/shipshapecode/shepherd/pull/2924) Update publish.yml to have node-registry-url ([@NullVoxPopuli](https://github.com/NullVoxPopuli))

#### Committers: 1
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)

## Release (2024-07-24)

@shepherdpro/pro-js 1.2.2 (patch)
react-shepherd 6.0.8 (patch)
shepherd.js 13.0.2 (patch)

#### :house: Internal
* `@shepherdpro/pro-js`, `react-shepherd`, `shepherd.js`
  * [#2922](https://github.com/shipshapecode/shepherd/pull/2922) 👷 Add publish config and scarf paackage ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-07-22)

@shepherdpro/pro-js 1.2.1 (patch)
react-shepherd 6.0.7 (patch)

#### :bug: Bug Fix
* `@shepherdpro/pro-js`, `react-shepherd`
  * [#2920](https://github.com/shipshapecode/shepherd/pull/2920) 👷 Fix package for correct release plan build ordering ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-07-18)

@shepherdpro/pro-js 1.2.0 (minor)
react-shepherd 6.0.6 (patch)

#### :rocket: Enhancement
* `@shepherdpro/pro-js`
  * [#2911](https://github.com/shipshapecode/shepherd/pull/2911) ✨ Pro: Add functions to pro for taking config from API ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* `shepherd-docs`, `landing`
  * [#2912](https://github.com/shipshapecode/shepherd/pull/2912) ⬆ Update of Astro to v4.12 and related deps upgrades ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `react-shepherd`
  * [#2882](https://github.com/shipshapecode/shepherd/pull/2882) ➖ Remove release-it package and configs ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-06-28)

@shepherdpro/pro-js 1.1.0 (minor)
react-shepherd 6.0.5 (patch)
shepherd.js 13.0.1 (patch)

#### :rocket: Enhancement
* `@shepherdpro/pro-js`
  * [#2895](https://github.com/shipshapecode/shepherd/pull/2895) ✨ Add reading for isAutoStart value sent from app ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :bug: Bug Fix
* `shepherd.js`
  * [#2900](https://github.com/shipshapecode/shepherd/pull/2900) 🐛 Add small padding to arrow if edge alignment is used ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* [#2898](https://github.com/shipshapecode/shepherd/pull/2898) 👷 Fix changelog error on merges ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-06-22)

@shepherdpro/pro-js 1.0.4 (patch)
react-shepherd 6.0.4 (patch)

#### :bug: Bug Fix
* `@shepherdpro/pro-js`
  * [#2887](https://github.com/shipshapecode/shepherd/pull/2887) 🐛 Fix issue with object merge to push events to pro app ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-06-21)

@shepherdpro/pro-js 1.0.3 (patch)
react-shepherd 6.0.3 (patch)

#### :bug: Bug Fix
* `@shepherdpro/pro-js`, `react-shepherd`
  * [#2885](https://github.com/shipshapecode/shepherd/pull/2885) 🐛 Fix missing tour active check ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-06-21)

@shepherdpro/pro-js 1.0.2 (patch)
react-shepherd 6.0.2 (patch)

#### :bug: Bug Fix
* `@shepherdpro/pro-js`
  * [#2883](https://github.com/shipshapecode/shepherd/pull/2883) 🐛 Fix bug where events fail to fire due to naming ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* `shepherd-docs`, `landing`
  * [#2880](https://github.com/shipshapecode/shepherd/pull/2880) 📝 Add updated documentation for pro package and updated CDN links ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* [#2881](https://github.com/shipshapecode/shepherd/pull/2881) Prepare Release ([@github-actions[bot]](https://github.com/apps/github-actions))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- [@github-actions[bot]](https://github.com/apps/github-actions)

## Release (2024-06-21)



#### :memo: Documentation
* `shepherd-docs`, `landing`
  * [#2880](https://github.com/shipshapecode/shepherd/pull/2880) 📝 Add updated documentation for pro package and updated CDN links ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-06-20)

@shepherdpro/pro-js 1.0.1 (patch)
react-shepherd 6.0.1 (patch)

#### :bug: Bug Fix
* `@shepherdpro/pro-js`
  * [#2878](https://github.com/shipshapecode/shepherd/pull/2878) 👷 Add prepack script to pro-js ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-06-19)

@shepherdpro/pro-js 1.0.0 (major)
react-shepherd 6.0.0 (major)
shepherd.js 13.0.0 (major)

#### :boom: Breaking Change
* `shepherd-docs`, `@shepherdpro/pro-js`, `react-shepherd`, `shepherd.js`, `cypress-tests`, `unit-tests`
  * [#2870](https://github.com/shipshapecode/shepherd/pull/2870) ✨ Add new package specific to Pro features ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :bug: Bug Fix
* `shepherd-docs`, `react-shepherd`, `shepherd.js`
  * [#2871](https://github.com/shipshapecode/shepherd/pull/2871) Simplify dist to only include one TS file ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* `landing`
  * [#2877](https://github.com/shipshapecode/shepherd/pull/2877) 👷 Add correct token to publish all packages ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2838](https://github.com/shipshapecode/shepherd/pull/2838) tweak: prevents header links overflow in small screens ([@ArnavK-09](https://github.com/ArnavK-09))

#### Committers: 3
- Arnav K ([@ArnavK-09](https://github.com/ArnavK-09))
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2024-06-07)

react-shepherd 5.0.6 (patch)
shepherd.js 12.0.6 (patch)

#### :bug: Bug Fix
* `shepherd.js`, `cypress-tests`
  * [#2853](https://github.com/shipshapecode/shepherd/pull/2853) fix: reconfigure CSS bundling ([@Kenneth-Sills](https://github.com/Kenneth-Sills))

#### :house: Internal
* `shepherd.js`
  * [#2848](https://github.com/shipshapecode/shepherd/pull/2848) Bump @floating-ui/dom from 1.6.3 to 1.6.5 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2851](https://github.com/shipshapecode/shepherd/pull/2851) Bump rollup-plugin-license from 3.3.1 to 3.4.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `shepherd.js`, `cypress-tests`, `unit-tests`
  * [#2849](https://github.com/shipshapecode/shepherd/pull/2849) Bump @babel/core from 7.24.5 to 7.24.6 ([@dependabot[bot]](https://github.com/apps/dependabot))
* Other
  * [#2850](https://github.com/shipshapecode/shepherd/pull/2850) Bump release-it from 17.2.1 to 17.3.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2846](https://github.com/shipshapecode/shepherd/pull/2846) App: 🔥 Remove app as it is not part of a workspace ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2844](https://github.com/shipshapecode/shepherd/pull/2844) App: ⬆ Upgrade Shepherd lib in the app to v5 ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd-docs`
  * [#2852](https://github.com/shipshapecode/shepherd/pull/2852) Bump @astrojs/starlight from 0.22.4 to 0.23.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2799](https://github.com/shipshapecode/shepherd/pull/2799) Bump @flydotio/dockerfile from 0.5.6 to 0.5.7 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `unit-tests`
  * [#2816](https://github.com/shipshapecode/shepherd/pull/2816) Bump core-js from 3.37.0 to 3.37.1 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Kenneth Sills ([@Kenneth-Sills](https://github.com/Kenneth-Sills))

## Release (2024-05-29)

react-shepherd 5.0.5 (patch)
shepherd.js 12.0.5 (patch)

#### :bug: Bug Fix
* `shepherd-docs`, `shepherd.js`, `cypress-tests`
  * [#2839](https://github.com/shipshapecode/shepherd/pull/2839) Export CSS and just create one file ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* `shepherd-docs`, `landing`
  * [#2840](https://github.com/shipshapecode/shepherd/pull/2840) Bump @astrojs/check from 0.5.10 to 0.7.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `shepherd.js`
  * [#2818](https://github.com/shipshapecode/shepherd/pull/2818) Bump eslint-plugin-svelte from 2.38.0 to 2.39.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2835](https://github.com/shipshapecode/shepherd/pull/2835) Landing: ➕ Update node version for deployment action ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `cypress-tests`
  * [#2841](https://github.com/shipshapecode/shepherd/pull/2841) Bump chai from 4.4.1 to 5.1.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* Other
  * [#2836](https://github.com/shipshapecode/shepherd/pull/2836) App: ⬆ Upgrade RW version to v7.6 ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2024-05-24)

shepherd-docs 0.0.6 (patch)
react-shepherd 5.0.4 (patch)
shepherd.js 12.0.4 (patch)

#### :bug: Bug Fix
* `shepherd-docs`, `landing`, `shepherd.js`, `cypress-tests`
  * [#2820](https://github.com/shipshapecode/shepherd/pull/2820) Fix TS issues, more correctly ship CJS and ESM ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* `unit-tests`
  * [#2814](https://github.com/shipshapecode/shepherd/pull/2814) Bump eslint-plugin-jest from 28.4.0 to 28.5.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `react-shepherd`
  * [#2819](https://github.com/shipshapecode/shepherd/pull/2819) Bump happy-dom from 14.7.1 to 14.11.0 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2024-05-24)

shepherd-docs 0.0.5 (patch)
react-shepherd 5.0.3 (patch)
shepherd.js 12.0.3 (patch)

#### :bug: Bug Fix
* `react-shepherd`
  * [#2828](https://github.com/shipshapecode/shepherd/pull/2828) React: 🐛 Fix init to be optional ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2809](https://github.com/shipshapecode/shepherd/pull/2809) React: 👷 Update tsc target to match lowest compatibility ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `landing`
  * [#2821](https://github.com/shipshapecode/shepherd/pull/2821) Landing: 🐛 Fix config for canonicalURL ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* [#2824](https://github.com/shipshapecode/shepherd/pull/2824) Update README.md for incorrect URL ([@pranshugupta54](https://github.com/pranshugupta54))

#### :house: Internal
* `landing`
  * [#2827](https://github.com/shipshapecode/shepherd/pull/2827) Landing: 🐛 Update action to build js lib before docker copys it ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2826](https://github.com/shipshapecode/shepherd/pull/2826) Landing: 🐛 Update Dockerfile to build JS lib before copy ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2804](https://github.com/shipshapecode/shepherd/pull/2804) Bump @tailwindcss/typography from 0.5.12 to 0.5.13 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `shepherd-docs`, `landing`, `react-shepherd`, `shepherd.js`
  * [#2825](https://github.com/shipshapecode/shepherd/pull/2825) Landing: 🚚 Move blog to index page and update URLs ([@chuckcarpenter](https://github.com/chuckcarpenter))
* Other
  * [#2822](https://github.com/shipshapecode/shepherd/pull/2822) App: 🐛 Fix IP address check for webhook ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2811](https://github.com/shipshapecode/shepherd/pull/2811) App: ✨ Remove FF for pricing and edit signup flow ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2810](https://github.com/shipshapecode/shepherd/pull/2810) App: 🗃️  Add created at for users and subscription defaults ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `landing`, `shepherd.js`
  * [#2812](https://github.com/shipshapecode/shepherd/pull/2812) Landing: 👷 Add fly.io deployment ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd-docs`
  * [#2808](https://github.com/shipshapecode/shepherd/pull/2808) Bump @astrojs/starlight from 0.21.5 to 0.22.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `react-shepherd`
  * [#2798](https://github.com/shipshapecode/shepherd/pull/2798) Bump @testing-library/react from 15.0.6 to 15.0.7 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2797](https://github.com/shipshapecode/shepherd/pull/2797) Bump @types/react from 18.3.1 to 18.3.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `shepherd-docs`, `landing`
  * [#2806](https://github.com/shipshapecode/shepherd/pull/2806) Bump astro from 4.6.3 to 4.8.4 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Pranshu Gupta ([@pranshugupta54](https://github.com/pranshugupta54))

## Release (2024-05-14)

shepherd-docs 0.0.4 (patch)
react-shepherd 5.0.2 (patch)
shepherd.js 12.0.2 (patch)

#### :bug: Bug Fix
* `landing`, `shepherd.js`
  * [#2805](https://github.com/shipshapecode/shepherd/pull/2805) 🐛 Fixes import issues reported in 2785 ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd.js`
  * [#2794](https://github.com/shipshapecode/shepherd/pull/2794) 🐛  Add missing required type attribute for button ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2793](https://github.com/shipshapecode/shepherd/pull/2793) 🐛  Add fix for modal reshow from 2436 ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* Other
  * [#2784](https://github.com/shipshapecode/shepherd/pull/2784) Bump release-it from 17.2.0 to 17.2.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2790](https://github.com/shipshapecode/shepherd/pull/2790) App: ✨ Add webhook for subscription management ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2788](https://github.com/shipshapecode/shepherd/pull/2788) App: 🗃️  Add migration to give all users a subscription ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd.js`
  * [#2782](https://github.com/shipshapecode/shepherd/pull/2782) Bump rollup from 4.14.3 to 4.17.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `react-shepherd`
  * [#2778](https://github.com/shipshapecode/shepherd/pull/2778) Bump vite from 5.2.10 to 5.2.11 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## Release (2024-05-10)

shepherd-docs 0.0.3 (patch)
react-shepherd 5.0.1 (patch)
shepherd.js 12.0.1 (patch)

#### :bug: Bug Fix
* `react-shepherd`, `shepherd.js`
  * [#2789](https://github.com/shipshapecode/shepherd/pull/2789) Add prepack scripts ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* `react-shepherd`
  * [#2781](https://github.com/shipshapecode/shepherd/pull/2781) Bump vite-plugin-dts from 3.9.0 to 3.9.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `shepherd.js`, `cypress-tests`, `unit-tests`
  * [#2783](https://github.com/shipshapecode/shepherd/pull/2783) Bump @babel/core from 7.24.4 to 7.24.5 ([@dependabot[bot]](https://github.com/apps/dependabot))
* Other
  * [#2786](https://github.com/shipshapecode/shepherd/pull/2786) App: 🚑️ Fix to disable post for checkout url ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## Release (2024-05-06)

shepherd-docs 0.0.2 (patch)
react-shepherd 5.0.0 (major)
shepherd.js 12.0.0 (patch)

#### :boom: Breaking Change
* `react-shepherd`
  * [#2707](https://github.com/shipshapecode/shepherd/pull/2707) React: ✨ Adding improved provider for v5 release ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* `shepherd-docs`
  * [#2768](https://github.com/shipshapecode/shepherd/pull/2768) Docs: 📝 Add page for pro analytics ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd-docs`, `shepherd.js`
  * [#2717](https://github.com/shipshapecode/shepherd/pull/2717) Docs: 📝 Move docs generator to Starlight and typedoc ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd.js`
  * [#2735](https://github.com/shipshapecode/shepherd/pull/2735) 🚚 Move copy of main README to lib ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* `react-shepherd`
  * [#2755](https://github.com/shipshapecode/shepherd/pull/2755) Bump vite-plugin-dts from 3.8.3 to 3.9.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2772](https://github.com/shipshapecode/shepherd/pull/2772) Bump @testing-library/react from 15.0.4 to 15.0.6 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2774](https://github.com/shipshapecode/shepherd/pull/2774) Bump @vitest/ui from 1.5.0 to 1.6.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2759](https://github.com/shipshapecode/shepherd/pull/2759) Bump @types/react from 18.2.79 to 18.3.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2753](https://github.com/shipshapecode/shepherd/pull/2753) Bump @testing-library/react from 14.2.2 to 15.0.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2754](https://github.com/shipshapecode/shepherd/pull/2754) Bump vitest from 1.4.0 to 1.5.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2742](https://github.com/shipshapecode/shepherd/pull/2742) Bump vite from 5.2.8 to 5.2.10 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2750](https://github.com/shipshapecode/shepherd/pull/2750) Bump @vitest/ui from 1.4.0 to 1.5.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2718](https://github.com/shipshapecode/shepherd/pull/2718) Bump vite-plugin-dts from 3.7.3 to 3.8.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2704](https://github.com/shipshapecode/shepherd/pull/2704) Bump happy-dom from 14.3.9 to 14.7.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2726](https://github.com/shipshapecode/shepherd/pull/2726) Bump @types/react from 18.2.70 to 18.2.79 ([@dependabot[bot]](https://github.com/apps/dependabot))
* Other
  * [#2776](https://github.com/shipshapecode/shepherd/pull/2776) App: ✨ Add initial Chargebee integration, under feature flag ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2751](https://github.com/shipshapecode/shepherd/pull/2751) App: ⬆ Upgrade redwood to 7.4.3 ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2741](https://github.com/shipshapecode/shepherd/pull/2741) App: 💄 Fix benefits layout on mobile ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2740](https://github.com/shipshapecode/shepherd/pull/2740) App: 💄 Add mobile menu and styling for landing page ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2739](https://github.com/shipshapecode/shepherd/pull/2739) App: 🐛 Update footer links to not use component link ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2738](https://github.com/shipshapecode/shepherd/pull/2738) App: 📝 Update analytics text on landing page ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2737](https://github.com/shipshapecode/shepherd/pull/2737) App: 💄 Update main landing page ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2732](https://github.com/shipshapecode/shepherd/pull/2732) Update README.md ([@malthauser](https://github.com/malthauser))
  * [#2733](https://github.com/shipshapecode/shepherd/pull/2733) App: 🐛 Add href to reset email link ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2730](https://github.com/shipshapecode/shepherd/pull/2730) App: ✨ Add email for forgot password flow ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2731](https://github.com/shipshapecode/shepherd/pull/2731) App: 🐛 Fix position of second step to allow click on smaller screens ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2728](https://github.com/shipshapecode/shepherd/pull/2728) App: ✨ Add user properties to tour setup ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2714](https://github.com/shipshapecode/shepherd/pull/2714) Bump jose from 4.15.4 to 4.15.5 in /app ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2727](https://github.com/shipshapecode/shepherd/pull/2727) App: 🐛 Update before show of tour to wait for element to render ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2724](https://github.com/shipshapecode/shepherd/pull/2724) App: 🐛 Fix some TS errors from emails fix and prerender landing page ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2723](https://github.com/shipshapecode/shepherd/pull/2723) App: ⬆ Update Redwood to v7.4.1 ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2716](https://github.com/shipshapecode/shepherd/pull/2716) App: ✨ Add description field to demo request form ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2713](https://github.com/shipshapecode/shepherd/pull/2713) App: ⬆ Update Redwood to v7.3.2 ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2706](https://github.com/shipshapecode/shepherd/pull/2706) 🚚 Move platform application files to main repo ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd-docs`, `landing`
  * [#2775](https://github.com/shipshapecode/shepherd/pull/2775) Docs: ➕ Add posthog for analytics to both docs and landing ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd-docs`
  * [#2763](https://github.com/shipshapecode/shepherd/pull/2763) Bump sharp from 0.32.6 to 0.33.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `shepherd.js`
  * [#2764](https://github.com/shipshapecode/shepherd/pull/2764) Bump cssnano from 6.1.2 to 7.0.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2722](https://github.com/shipshapecode/shepherd/pull/2722) Bump rollup from 4.13.2 to 4.14.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* `unit-tests`
  * [#2770](https://github.com/shipshapecode/shepherd/pull/2770) Bump eslint-plugin-jest from 28.2.0 to 28.4.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2703](https://github.com/shipshapecode/shepherd/pull/2703) Bump eslint-plugin-jest from 27.9.0 to 28.2.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2725](https://github.com/shipshapecode/shepherd/pull/2725) App: ✨ Add intro tour to admin portal ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `shepherd.js`, `unit-tests`
  * [#2765](https://github.com/shipshapecode/shepherd/pull/2765) Revert CI changes ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* `landing`
  * [#2736](https://github.com/shipshapecode/shepherd/pull/2736) Blog: 🐛 Add sharp for pnpm based md image processing ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2734](https://github.com/shipshapecode/shepherd/pull/2734) Blog: 📝 Add alpha launch blog post ([@chuckcarpenter](https://github.com/chuckcarpenter))
  * [#2687](https://github.com/shipshapecode/shepherd/pull/2687) Bump @astrojs/check from 0.5.9 to 0.5.10 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2698](https://github.com/shipshapecode/shepherd/pull/2698) Bump @astrojs/sitemap from 3.1.1 to 3.1.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2719](https://github.com/shipshapecode/shepherd/pull/2719) Bump astro from 4.5.12 to 4.6.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2715](https://github.com/shipshapecode/shepherd/pull/2715) Landing: 💬 Add codepen as OSS user ([@chuckcarpenter](https://github.com/chuckcarpenter))
* `landing`, `react-shepherd`, `shepherd.js`, `cypress-tests`, `unit-tests`
  * [#2721](https://github.com/shipshapecode/shepherd/pull/2721) Bump typescript from 5.4.2 to 5.4.5 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 3
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Matt Althauser ([@malthauser](https://github.com/malthauser))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))














## v12.0.0-alpha.13 (2024-04-05)

#### :rocket: Enhancement
* [#2684](https://github.com/shipshapecode/shepherd/pull/2684) Use IndexedDB to store tour data ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* `react`
  * [#2690](https://github.com/shipshapecode/shepherd/pull/2690) Bump vite from 5.1.7 to 5.2.8 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2675](https://github.com/shipshapecode/shepherd/pull/2675) Bump happy-dom from 12.10.3 to 14.3.9 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2685](https://github.com/shipshapecode/shepherd/pull/2685) Bump vite from 5.1.4 to 5.1.7 ([@dependabot[bot]](https://github.com/apps/dependabot))
* Other
  * [#2694](https://github.com/shipshapecode/shepherd/pull/2694) Bump cypress from 13.7.1 to 13.7.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2692](https://github.com/shipshapecode/shepherd/pull/2692) Bump @babel/core from 7.24.3 to 7.24.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2693](https://github.com/shipshapecode/shepherd/pull/2693) Bump @astrojs/mdx from 2.2.2 to 2.2.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2688](https://github.com/shipshapecode/shepherd/pull/2688) Bump @typescript-eslint/eslint-plugin from 7.4.0 to 7.5.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2686](https://github.com/shipshapecode/shepherd/pull/2686) Add tests for `Shepherd.isTourEnabled` ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
  * [#2678](https://github.com/shipshapecode/shepherd/pull/2678) Bump astro from 4.5.9 to 4.5.12 ([@dependabot[bot]](https://github.com/apps/dependabot))
  * [#2676](https://github.com/shipshapecode/shepherd/pull/2676) Bump @tailwindcss/typography from 0.5.10 to 0.5.12 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.12 (2024-04-02)

#### :boom: Breaking Change
* [#2683](https://github.com/shipshapecode/shepherd/pull/2683) Update to Svelte 4, run ESM in tests ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#2679](https://github.com/shipshapecode/shepherd/pull/2679) Bump @astrojs/mdx from 2.2.1 to 2.2.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2681](https://github.com/shipshapecode/shepherd/pull/2681) Bump @babel/preset-typescript from 7.23.3 to 7.24.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2680](https://github.com/shipshapecode/shepherd/pull/2680) Bump rollup from 4.13.0 to 4.13.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2677](https://github.com/shipshapecode/shepherd/pull/2677) Bump tailwindcss from 3.4.1 to 3.4.3 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.11 (2024-04-01)

#### :bug: Bug Fix
* [#2682](https://github.com/shipshapecode/shepherd/pull/2682) Simplify rollup config ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.10 (2024-04-01)

#### :house: Internal
* [#2670](https://github.com/shipshapecode/shepherd/pull/2670) Remove NoOp type usage ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.9 (2024-04-01)

#### :rocket: Enhancement
* [#2669](https://github.com/shipshapecode/shepherd/pull/2669) Ship both cjs and esm ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :memo: Documentation
* [#2668](https://github.com/shipshapecode/shepherd/pull/2668) ✨ Add dynamic button with stars count from github ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.8 (2024-03-29)

#### :rocket: Enhancement
* `react`
  * [#2649](https://github.com/shipshapecode/shepherd/pull/2649) ✨ Add initial React package from SDK ([@chuckcarpenter](https://github.com/chuckcarpenter))
* Other
  * [#2667](https://github.com/shipshapecode/shepherd/pull/2667) Move `properties` under the `data` object ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :bug: Bug Fix
* [#2665](https://github.com/shipshapecode/shepherd/pull/2665) Add async/await for ShepherdPro init ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.7 (2024-03-28)

#### :rocket: Enhancement
* [#2664](https://github.com/shipshapecode/shepherd/pull/2664) Add extra properties bucket to send to Shepherd Pro ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2648](https://github.com/shipshapecode/shepherd/pull/2648) ✨ Add pro init and explicit ID ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :bug: Bug Fix
* [#2659](https://github.com/shipshapecode/shepherd/pull/2659) 🐛 Update user ID ref to be direct from localstorage ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* [#2662](https://github.com/shipshapecode/shepherd/pull/2662) Document release process ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#2663](https://github.com/shipshapecode/shepherd/pull/2663) Update linting and prettier ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2656](https://github.com/shipshapecode/shepherd/pull/2656) Bump postcss from 8.4.37 to 8.4.38 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2653](https://github.com/shipshapecode/shepherd/pull/2653) Bump @babel/core from 7.24.0 to 7.24.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2661](https://github.com/shipshapecode/shepherd/pull/2661) Bump cssnano from 6.1.0 to 6.1.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2658](https://github.com/shipshapecode/shepherd/pull/2658) Bump release-plan from 0.8.0 to 0.9.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2650](https://github.com/shipshapecode/shepherd/pull/2650) Bump autoprefixer from 10.4.17 to 10.4.19 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2652](https://github.com/shipshapecode/shepherd/pull/2652) Bump cypress from 13.7.0 to 13.7.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2657](https://github.com/shipshapecode/shepherd/pull/2657) Bump @babel/preset-env from 7.24.0 to 7.24.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2654](https://github.com/shipshapecode/shepherd/pull/2654) Bump astro from 4.5.6 to 4.5.9 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2655](https://github.com/shipshapecode/shepherd/pull/2655) Bump @astrojs/mdx from 2.2.0 to 2.2.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2627](https://github.com/shipshapecode/shepherd/pull/2627) Bump cssnano from 6.0.5 to 6.1.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2629](https://github.com/shipshapecode/shepherd/pull/2629) Bump @astrojs/mdx from 2.1.1 to 2.2.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2634](https://github.com/shipshapecode/shepherd/pull/2634) Bump rollup-plugin-svelte from 7.1.6 to 7.2.0 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.6 (2024-03-20)

#### :memo: Documentation
* [#2647](https://github.com/shipshapecode/shepherd/pull/2647) Remove webcomponents polyfill ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#2635](https://github.com/shipshapecode/shepherd/pull/2635) Bump rollup from 4.12.0 to 4.13.0 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.5 (2024-03-20)

#### :memo: Documentation
* [#2646](https://github.com/shipshapecode/shepherd/pull/2646) Fix docs build ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#2637](https://github.com/shipshapecode/shepherd/pull/2637) Bump @astrojs/check from 0.3.4 to 0.5.9 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2644](https://github.com/shipshapecode/shepherd/pull/2644) Bump postcss from 8.4.35 to 8.4.37 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2636](https://github.com/shipshapecode/shepherd/pull/2636) Bump cypress from 13.6.6 to 13.7.0 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.4 (2024-03-19)

#### :bug: Bug Fix
* [#2640](https://github.com/shipshapecode/shepherd/pull/2640) 🐛 Fix issue with full steps being circular dependency ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* [#2613](https://github.com/shipshapecode/shepherd/pull/2613) Add TS support for JSDoc ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#2642](https://github.com/shipshapecode/shepherd/pull/2642) Bump astro from 4.4.15 to 4.5.6 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.3 (2024-03-12)

#### :rocket: Enhancement
* [#2631](https://github.com/shipshapecode/shepherd/pull/2631) Add EventOptions interface, tweak data format ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2632](https://github.com/shipshapecode/shepherd/pull/2632) Move Step and Tour assignment ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#2630](https://github.com/shipshapecode/shepherd/pull/2630) Bump rollup-plugin-license from 3.2.0 to 3.3.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2628](https://github.com/shipshapecode/shepherd/pull/2628) Bump typescript from 5.3.3 to 5.4.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2625](https://github.com/shipshapecode/shepherd/pull/2625) Bump astro from 4.4.8 to 4.4.15 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-alpha.2 (2024-03-08)

#### :boom: Breaking Change
* [#2626](https://github.com/shipshapecode/shepherd/pull/2626) Convert to ESM ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

## v12.0.0-1 (2024-03-08)

## v12.0.0-0 (2024-03-08)

#### :boom: Breaking Change
* [#2610](https://github.com/shipshapecode/shepherd/pull/2610) Move files from src/js to src, convert to TS ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2572](https://github.com/shipshapecode/shepherd/pull/2572) Drop support for node < 18 ([@RobbieTheWagner](https://github.com/RobbieTheWagner))

#### :rocket: Enhancement
* [#2620](https://github.com/shipshapecode/shepherd/pull/2620) ✨ Add Pro events sharing ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2562](https://github.com/shipshapecode/shepherd/pull/2562) Related to #2399, also stop keydown default behavior when navigation is enabled ([@karendolan](https://github.com/karendolan))

#### :bug: Bug Fix
* [#2551](https://github.com/shipshapecode/shepherd/pull/2551) fix: handle target elements within an iframe ([@rafiazman](https://github.com/rafiazman))

#### :memo: Documentation
* [#2604](https://github.com/shipshapecode/shepherd/pull/2604) 🎨 Add note in docs about importing styles ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2603](https://github.com/shipshapecode/shepherd/pull/2603) 📝 Add blog entry for Feb 2023 ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2582](https://github.com/shipshapecode/shepherd/pull/2582) 📝 Add blog post on Redwood.js ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2563](https://github.com/shipshapecode/shepherd/pull/2563) 🎨 Add blog layout and styling, plus first post! ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2557](https://github.com/shipshapecode/shepherd/pull/2557) 🔥 Remove extra options ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2556](https://github.com/shipshapecode/shepherd/pull/2556) ✨ Add new pricing page with options and contact link ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2549](https://github.com/shipshapecode/shepherd/pull/2549) 🚀 Add Astro and convert landing site to use framework  ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2508](https://github.com/shipshapecode/shepherd/pull/2508) Added complete method on usage doc ([@abhayvershwal](https://github.com/abhayvershwal))

#### :house: Internal
* [#2624](https://github.com/shipshapecode/shepherd/pull/2624) Split library and tests into their own workspaces ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2621](https://github.com/shipshapecode/shepherd/pull/2621) Add release-plan ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2615](https://github.com/shipshapecode/shepherd/pull/2615) Adjust exports and rollup config ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2616](https://github.com/shipshapecode/shepherd/pull/2616) Update rollup packages ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2608](https://github.com/shipshapecode/shepherd/pull/2608) Fix cypress tests ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2601](https://github.com/shipshapecode/shepherd/pull/2601) 👷‍ Add typescript with minimal setup ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2605](https://github.com/shipshapecode/shepherd/pull/2605) 📝 Remove `polyfill.io` ([@SukkaW](https://github.com/SukkaW))
* [#2607](https://github.com/shipshapecode/shepherd/pull/2607) Switch from yarn to pnpm, initial monorepo setup ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2598](https://github.com/shipshapecode/shepherd/pull/2598) 👷‍ Add remaining yarn 4 files ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2594](https://github.com/shipshapecode/shepherd/pull/2594) ⬆  Upgrade to Yarn v4 ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2574](https://github.com/shipshapecode/shepherd/pull/2574) Bump deps, yarn upgrade ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2573](https://github.com/shipshapecode/shepherd/pull/2573) Update some actions versions ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2570](https://github.com/shipshapecode/shepherd/pull/2570) Update to release-it 16 ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
* [#2558](https://github.com/shipshapecode/shepherd/pull/2558) 📈 Add analytics and remove carbon ads ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#2545](https://github.com/shipshapecode/shepherd/pull/2545) Bump prettier from 3.1.0 to 3.1.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2544](https://github.com/shipshapecode/shepherd/pull/2544) Bump cypress from 13.6.0 to 13.6.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2543](https://github.com/shipshapecode/shepherd/pull/2543) Bump rollup-plugin-visualizer from 5.10.0 to 5.11.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2542](https://github.com/shipshapecode/shepherd/pull/2542) Bump @babel/preset-env from 7.23.3 to 7.23.5 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2541](https://github.com/shipshapecode/shepherd/pull/2541) Bump tailwindcss from 3.3.5 to 3.3.6 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2540](https://github.com/shipshapecode/shepherd/pull/2540) Bump @babel/core from 7.23.3 to 7.23.5 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2537](https://github.com/shipshapecode/shepherd/pull/2537) Bump postcss from 8.4.31 to 8.4.32 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2536](https://github.com/shipshapecode/shepherd/pull/2536) Bump eslint from 8.54.0 to 8.55.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2535](https://github.com/shipshapecode/shepherd/pull/2535) Bump rollup-plugin-visualizer from 5.9.3 to 5.10.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2534](https://github.com/shipshapecode/shepherd/pull/2534) Bump eslint-config-prettier from 9.0.0 to 9.1.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2532](https://github.com/shipshapecode/shepherd/pull/2532) Bump @adobe/css-tools from 4.3.1 to 4.3.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2531](https://github.com/shipshapecode/shepherd/pull/2531) Bump rollup-plugin-visualizer from 5.9.2 to 5.9.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2530](https://github.com/shipshapecode/shepherd/pull/2530) Bump svelte-preprocess from 5.1.0 to 5.1.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2529](https://github.com/shipshapecode/shepherd/pull/2529) Bump cypress from 13.5.1 to 13.6.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2528](https://github.com/shipshapecode/shepherd/pull/2528) Bump eslint from 8.53.0 to 8.54.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2527](https://github.com/shipshapecode/shepherd/pull/2527) Bump cypress from 13.5.0 to 13.5.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2526](https://github.com/shipshapecode/shepherd/pull/2526) Bump start-server-and-test from 2.0.2 to 2.0.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2525](https://github.com/shipshapecode/shepherd/pull/2525) Bump svelte-preprocess from 5.0.4 to 5.1.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2524](https://github.com/shipshapecode/shepherd/pull/2524) Bump @babel/core from 7.23.2 to 7.23.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2523](https://github.com/shipshapecode/shepherd/pull/2523) Bump prettier from 3.0.3 to 3.1.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2522](https://github.com/shipshapecode/shepherd/pull/2522) Bump cypress from 13.4.0 to 13.5.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2521](https://github.com/shipshapecode/shepherd/pull/2521) Bump @babel/preset-env from 7.23.2 to 7.23.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2518](https://github.com/shipshapecode/shepherd/pull/2518) Bump start-server-and-test from 2.0.1 to 2.0.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2519](https://github.com/shipshapecode/shepherd/pull/2519) Bump eslint from 8.52.0 to 8.53.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2517](https://github.com/shipshapecode/shepherd/pull/2517) Bump cypress from 13.3.3 to 13.4.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2515](https://github.com/shipshapecode/shepherd/pull/2515) Bump tailwindcss from 3.3.3 to 3.3.5 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2514](https://github.com/shipshapecode/shepherd/pull/2514) Bump eslint-plugin-jest from 27.4.3 to 27.6.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2513](https://github.com/shipshapecode/shepherd/pull/2513) Bump cypress from 13.3.2 to 13.3.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2510](https://github.com/shipshapecode/shepherd/pull/2510) Bump eslint-plugin-jest from 27.4.2 to 27.4.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2511](https://github.com/shipshapecode/shepherd/pull/2511) Bump cypress from 13.3.1 to 13.3.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2509](https://github.com/shipshapecode/shepherd/pull/2509) Bump eslint from 8.51.0 to 8.52.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2506](https://github.com/shipshapecode/shepherd/pull/2506) Bump @babel/preset-env from 7.22.20 to 7.23.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2504](https://github.com/shipshapecode/shepherd/pull/2504) Bump rollup-plugin-license from 3.1.0 to 3.2.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2502](https://github.com/shipshapecode/shepherd/pull/2502) Bump cypress from 13.3.0 to 13.3.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2503](https://github.com/shipshapecode/shepherd/pull/2503) Bump eslint-plugin-prettier from 5.0.0 to 5.0.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2501](https://github.com/shipshapecode/shepherd/pull/2501) Bump @babel/core from 7.23.0 to 7.23.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2497](https://github.com/shipshapecode/shepherd/pull/2497) Bump eslint from 8.50.0 to 8.51.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2494](https://github.com/shipshapecode/shepherd/pull/2494) Bump rimraf from 5.0.1 to 5.0.5 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2493](https://github.com/shipshapecode/shepherd/pull/2493) Bump glob from 10.3.7 to 10.3.10 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2492](https://github.com/shipshapecode/shepherd/pull/2492) Bump cypress from 13.1.0 to 13.3.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2491](https://github.com/shipshapecode/shepherd/pull/2491) Bump eslint from 8.49.0 to 8.50.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2489](https://github.com/shipshapecode/shepherd/pull/2489) Bump eslint-plugin-jest from 27.2.3 to 27.4.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2490](https://github.com/shipshapecode/shepherd/pull/2490) Bump postcss from 8.4.30 to 8.4.31 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2488](https://github.com/shipshapecode/shepherd/pull/2488) Bump chai from 4.3.8 to 4.3.10 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2486](https://github.com/shipshapecode/shepherd/pull/2486) Bump get-func-name from 2.0.0 to 2.0.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2480](https://github.com/shipshapecode/shepherd/pull/2480) Bump glob from 10.3.4 to 10.3.7 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2484](https://github.com/shipshapecode/shepherd/pull/2484) Bump @babel/core from 7.22.20 to 7.23.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2479](https://github.com/shipshapecode/shepherd/pull/2479) Bump start-server-and-test from 2.0.0 to 2.0.1 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2483](https://github.com/shipshapecode/shepherd/pull/2483) Bump autoprefixer from 10.4.15 to 10.4.16 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2482](https://github.com/shipshapecode/shepherd/pull/2482) Bump postcss from 8.4.29 to 8.4.30 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2481](https://github.com/shipshapecode/shepherd/pull/2481) Bump babel-jest from 29.6.4 to 29.7.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2476](https://github.com/shipshapecode/shepherd/pull/2476) Bump jest-environment-jsdom from 29.6.4 to 29.7.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2477](https://github.com/shipshapecode/shepherd/pull/2477) Bump @babel/core from 7.22.17 to 7.22.20 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2475](https://github.com/shipshapecode/shepherd/pull/2475) Bump jest from 29.6.4 to 29.7.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2473](https://github.com/shipshapecode/shepherd/pull/2473) Bump @floating-ui/dom from 1.5.2 to 1.5.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2474](https://github.com/shipshapecode/shepherd/pull/2474) Bump @babel/preset-env from 7.22.15 to 7.22.20 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2467](https://github.com/shipshapecode/shepherd/pull/2467) Bump @floating-ui/dom from 1.5.1 to 1.5.2 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2464](https://github.com/shipshapecode/shepherd/pull/2464) Bump @babel/core from 7.22.11 to 7.22.17 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2468](https://github.com/shipshapecode/shepherd/pull/2468) Bump @babel/preset-env from 7.22.14 to 7.22.15 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2465](https://github.com/shipshapecode/shepherd/pull/2465) Bump prettier from 3.0.2 to 3.0.3 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2466](https://github.com/shipshapecode/shepherd/pull/2466) Bump eslint from 8.48.0 to 8.49.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2462](https://github.com/shipshapecode/shepherd/pull/2462) Bump del from 7.0.0 to 7.1.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2463](https://github.com/shipshapecode/shepherd/pull/2463) Bump postcss from 8.4.28 to 8.4.29 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2461](https://github.com/shipshapecode/shepherd/pull/2461) Bump cypress from 12.17.4 to 13.1.0 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2460](https://github.com/shipshapecode/shepherd/pull/2460) Bump glob from 10.3.3 to 10.3.4 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2459](https://github.com/shipshapecode/shepherd/pull/2459) Bump @babel/preset-env from 7.22.10 to 7.22.14 ([@dependabot[bot]](https://github.com/apps/dependabot))
* [#2458](https://github.com/shipshapecode/shepherd/pull/2458) Bump rollup-plugin-license from 3.0.1 to 3.1.0 ([@dependabot[bot]](https://github.com/apps/dependabot))

#### Committers: 6
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Karen Dolan ([@karendolan](https://github.com/karendolan))
- Rafi ([@rafiazman](https://github.com/rafiazman))
- Robbie Wagner ([@RobbieTheWagner](https://github.com/RobbieTheWagner))
- Sukka ([@SukkaW](https://github.com/SukkaW))
- [@abhayvershwal](https://github.com/abhayvershwal)

## v11.2.0 (2023-09-02)

#### :rocket: Enhancement
* [#2399](https://github.com/shipshapecode/shepherd/pull/2399) Prevent ESC, KEY_RIGHT, KEY_LEFT propagation when keyboardNav is enabled ([@karendolan](https://github.com/karendolan))

#### Committers: 1
- Karen Dolan ([@karendolan](https://github.com/karendolan))

## v11.1.1 (2023-04-03)

## v11.1.0 (2023-04-03)

#### :rocket: Enhancement
* [#2168](https://github.com/shipshapecode/shepherd/pull/2168) add funtion support for confirmCancel ([@taozhiyu](https://github.com/taozhiyu))

#### :bug: Bug Fix
* [#2204](https://github.com/shipshapecode/shepherd/pull/2204) Bugfix: prevent to show spurious warnings in dev panel console ([@SamyCookie](https://github.com/SamyCookie))

#### :memo: Documentation
* [#2251](https://github.com/shipshapecode/shepherd/pull/2251) Use a valid event on code example ([@didaquis](https://github.com/didaquis))
* [#2224](https://github.com/shipshapecode/shepherd/pull/2224) Remove mention to Popper on docs ([@didaquis](https://github.com/didaquis))
* [#2205](https://github.com/shipshapecode/shepherd/pull/2205) Fix the typo in docs ([@de-don](https://github.com/de-don))
* [#2174](https://github.com/shipshapecode/shepherd/pull/2174) Adding an example use case of shepherd to Read Me ([@JayP718](https://github.com/JayP718))

#### Committers: 5
- Denis ([@de-don](https://github.com/de-don))
- Dídac García ([@didaquis](https://github.com/didaquis))
- [@JayP718](https://github.com/JayP718)
- [@SamyCookie](https://github.com/SamyCookie)
- 涛之雨 ([@taozhiyu](https://github.com/taozhiyu))

## v11.0.1 (2022-12-12)

#### :bug: Bug Fix
* [#2183](https://github.com/shipshapecode/shepherd/pull/2183) Fix centering steps with no attachTo.on ([@rwwagner90](https://github.com/RobbieTheWagner))
* [#2182](https://github.com/shipshapecode/shepherd/pull/2182) Fix arrow offset, add back flipping behavior ([@rwwagner90](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))

## v11.0.0 (2022-11-21)

#### :boom: Breaking Change
* [#2037](https://github.com/shipshapecode/shepherd/pull/2037) Replace popperJS with Floating UI ([@theodoreb](https://github.com/theodoreb))

#### :rocket: Enhancement
* [#2137](https://github.com/shipshapecode/shepherd/pull/2137) Exporting StepOptionsButton type to be able to add tour steps buttons dynamically with type checking ([@xhafan](https://github.com/xhafan))
* [#2116](https://github.com/shipshapecode/shepherd/pull/2116) feat: add ability to specify corner radii ([@simoneb](https://github.com/simoneb))

#### :bug: Bug Fix
* [#2068](https://github.com/shipshapecode/shepherd/pull/2068) Do nothing when running server side ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :memo: Documentation
* [#2129](https://github.com/shipshapecode/shepherd/pull/2129) Replace references to popperjs ([@theodoreb](https://github.com/theodoreb))
* [#2022](https://github.com/shipshapecode/shepherd/pull/2022) remove all mentions of data-shepherd-active-tour ([@EmNicholson93](https://github.com/EmNicholson93))

#### :house: Internal
* [#2157](https://github.com/shipshapecode/shepherd/pull/2157) Remove firefox tests ([@rwwagner90](https://github.com/RobbieTheWagner))
* [#2047](https://github.com/shipshapecode/shepherd/pull/2047) chore: make yarn lint:js pass ([@theodoreb](https://github.com/theodoreb))
* [#2046](https://github.com/shipshapecode/shepherd/pull/2046) Fix calls to setTimeout in tests ([@theodoreb](https://github.com/theodoreb))

#### Committers: 6
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Eli Nicholson ([@EmNicholson93](https://github.com/EmNicholson93))
- Martin Havlišta ([@xhafan](https://github.com/xhafan))
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))
- Simone Busoli ([@simoneb](https://github.com/simoneb))
- Théodore Biadala ([@theodoreb](https://github.com/theodoreb))

## v10.0.1 (2022-08-01)

#### :bug: Bug Fix
* [#1997](https://github.com/shipshapecode/shepherd/pull/1997) Fix for smooth scrolling ([@hrypkema-amplify](https://github.com/hrypkema-amplify))

#### Committers: 1
- Henrik Rypkema ([@hrypkema-amplify](https://github.com/hrypkema-amplify))

## v10.0.0 (2022-06-07)

#### :boom: Breaking Change
* [#1930](https://github.com/shipshapecode/shepherd/pull/1930) Implement lazy evaluation of attachTo.element ([@monshan](https://github.com/monshan))

#### :bug: Bug Fix
* [#1942](https://github.com/shipshapecode/shepherd/pull/1942) Fix chrome opacity bug ([@monshan](https://github.com/monshan))

#### Committers: 1
- Marika Shanahan ([@monshan](https://github.com/monshan))

## v9.1.1 (2022-05-26)

#### :bug: Bug Fix
* [#1931](https://github.com/shipshapecode/shepherd/pull/1931) fixed showOn incorrectly skipping an index ([@liam-jones-lucout](https://github.com/liam-jones-lucout))

#### :house: Internal
* [#1920](https://github.com/shipshapecode/shepherd/pull/1920) Cleanup jest comments, update yarn.lock ([@monshan](https://github.com/monshan))
* [#1919](https://github.com/shipshapecode/shepherd/pull/1919) Write jest-environment-jsdom into package.json file ([@monshan](https://github.com/monshan))

#### Committers: 2
- Marika Shanahan ([@monshan](https://github.com/monshan))
- [@liam-jones-lucout](https://github.com/liam-jones-lucout)

## v9.1.0 (2022-04-09)

#### :rocket: Enhancement
* [#1815](https://github.com/shipshapecode/shepherd/pull/1815) Add dynamic text and label properties for buttons ([@radibit](https://github.com/radibit))

#### Committers: 1
- Radimir Bitsov ([@radibit](https://github.com/radibit))

## v9.0.0 (2022-01-11)

#### :boom: Breaking Change
* [#1682](https://github.com/shipshapecode/shepherd/pull/1682) Drop node 10 support ([@rwwagner90](https://github.com/RobbieTheWagner))

#### :rocket: Enhancement
* [#1758](https://github.com/shipshapecode/shepherd/pull/1758) Fix type signature for `Evented.off()` ([@ulken](https://github.com/ulken))

#### :bug: Bug Fix
* [#1544](https://github.com/shipshapecode/shepherd/pull/1544) 🐛 Add check to remove class if canClickTarget is true ([@chuckcarpenter](https://github.com/chuckcarpenter))
* [#1479](https://github.com/shipshapecode/shepherd/pull/1479) Fix issue #1353 : Complete the tour when skipStep is the lastStep ([@thomasguittonneau](https://github.com/thomasguittonneau))

#### :memo: Documentation
* [#1513](https://github.com/shipshapecode/shepherd/pull/1513) Add `useModalOverlay` to example ([@rodrigoaraujolima92trulogic](https://github.com/rodrigoaraujolima92trulogic))
* [#1651](https://github.com/shipshapecode/shepherd/pull/1651) Adds Drupal to the list of Projects Using Shepherd ([@thejimbirch](https://github.com/thejimbirch))
* [#1632](https://github.com/shipshapecode/shepherd/pull/1632) I faced a problem while was trying to install shepherdjs ([@loldalolwerollnroll](https://github.com/loldalolwerollnroll))
* [#1623](https://github.com/shipshapecode/shepherd/pull/1623) Add another progress indicator cookbook example ([@aripddev](https://github.com/aripddev))

#### :house: Internal
* [#1520](https://github.com/shipshapecode/shepherd/pull/1520) Update config for tailwind 2 ([@rwwagner90](https://github.com/RobbieTheWagner))
* [#1462](https://github.com/shipshapecode/shepherd/pull/1462) Add automerge back to dependabot ([@rwwagner90](https://github.com/RobbieTheWagner))
* [#1447](https://github.com/shipshapecode/shepherd/pull/1447) Add catalog-info.yaml config file ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 8
- Aleksey Baranov ([@loldalolwerollnroll](https://github.com/loldalolwerollnroll))
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Jim Birch ([@thejimbirch](https://github.com/thejimbirch))
- Oskar Löfgren ([@ulken](https://github.com/ulken))
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))
- Rodrigo Lima ([@rodrigoaraujolima92trulogic](https://github.com/rodrigoaraujolima92trulogic))
- [@thomasguittonneau](https://github.com/thomasguittonneau)
- aripddev ([@aripddev](https://github.com/aripddev))

## v8.3.1 (2021-05-07)

#### :bug: Bug Fix
* [#1449](https://github.com/shipshapecode/shepherd/pull/1449) 🐛 Add preventOverflow option for tether to false ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 2
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)

## v8.3.0 (2021-04-06)

#### :house: Internal
* [#1402](https://github.com/shipshapecode/shepherd/pull/1402) Update rollup-plugin-postcss ([@rwwagner90](https://github.com/RobbieTheWagner))

#### Committers: 2
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)

## v8.2.3 (2021-03-25)

#### :house: Internal
* [#1379](https://github.com/shipshapecode/shepherd/pull/1379) Update npmignore, add assets to release ([@rwwagner90](https://github.com/RobbieTheWagner))

#### Committers: 1
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))

## v8.2.1 (2021-03-24)

#### :house: Internal
* [#1354](https://github.com/shipshapecode/shepherd/pull/1354) 👷 Add github token to action ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 1
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))

## v8.2.0 (2021-03-03)

#### :rocket: Enhancement
* [#1189](https://github.com/shipshapecode/shepherd/pull/1189) Remove `shepherd-target-click-disabled` class on step hide ([@zefj](https://github.com/zefj))

#### :bug: Bug Fix
* [#1332](https://github.com/shipshapecode/shepherd/pull/1332) properly handle centered modal ([@xiwcx](https://github.com/xiwcx))

#### :memo: Documentation
* [#1214](https://github.com/shipshapecode/shepherd/pull/1214) Add license scan report and status ([@fossabot](https://github.com/fossabot))
* [#1199](https://github.com/shipshapecode/shepherd/pull/1199) Add snapsure to Websites and Apps list in README.md ([@kkoppenhaver](https://github.com/kkoppenhaver))

#### :house: Internal
* [#1351](https://github.com/shipshapecode/shepherd/pull/1351) Bump cypress, fix cancel test ([@rwwagner90](https://github.com/RobbieTheWagner))
* [#1316](https://github.com/shipshapecode/shepherd/pull/1316) Remove browsersync, add rollup-serve ([@xiwcx](https://github.com/xiwcx))
* [#1262](https://github.com/shipshapecode/shepherd/pull/1262) 👷 Move CI/CD to actions ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### Committers: 7
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Filip Rec ([@zefj](https://github.com/zefj))
- Keanan Koppenhaver ([@kkoppenhaver](https://github.com/kkoppenhaver))
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)
- fossabot ([@fossabot](https://github.com/fossabot))
- i. welch canavan ([@xiwcx](https://github.com/xiwcx))

## v8.1.0 (2020-10-05)

#### :rocket: Enhancement
* [#1176](https://github.com/shipshapecode/shepherd/pull/1176) Add `stepsContainer` option, allowing users to specify rendering target for step elements ([@zefj](https://github.com/zefj))
* [#1074](https://github.com/shipshapecode/shepherd/pull/1074) Add missing types for Step.options and Tour.steps ([@anakorn](https://github.com/anakorn))

#### :bug: Bug Fix
* [#1132](https://github.com/shipshapecode/shepherd/pull/1132) Added default fallback for target when step is hidden/destroyed ([@IWMTom](https://github.com/IWMTom))
* [#1119](https://github.com/shipshapecode/shepherd/pull/1119) shift + tab handled ([@faizanu94](https://github.com/faizanu94))

#### :memo: Documentation
* [#1133](https://github.com/shipshapecode/shepherd/pull/1133) docs: Fix simple typo, unminifed -> unminified ([@timgates42](https://github.com/timgates42))
* [#1098](https://github.com/shipshapecode/shepherd/pull/1098) Update demo image ([@shepmaster](https://github.com/shepmaster))
* [#1086](https://github.com/shipshapecode/shepherd/pull/1086) Add multiple events example to docs ([@ricobonfim](https://github.com/ricobonfim))

#### :house: Internal
* [#1044](https://github.com/shipshapecode/shepherd/pull/1044) add Step.id to typings, fix tour.getById() typing ([@cyremur](https://github.com/cyremur))

#### Committers: 9
- Alex Nakorn ([@anakorn](https://github.com/anakorn))
- Filip Rec ([@zefj](https://github.com/zefj))
- Jake Goulding ([@shepmaster](https://github.com/shepmaster))
- Muhammad Faizan Uddin ([@faizanu94](https://github.com/faizanu94))
- Ricardo Bonfim ([@ricobonfim](https://github.com/ricobonfim))
- Tim Gates ([@timgates42](https://github.com/timgates42))
- Tom Wilson ([@IWMTom](https://github.com/IWMTom))
- [@cyremur](https://github.com/cyremur)
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)

## v8.0.2 (2020-07-10)

#### :rocket: Enhancement
* [#1026](https://github.com/shipshapecode/shepherd/pull/1026) Add Edge 18 to browserslist ([@te1](https://github.com/te1))
* [#996](https://github.com/shipshapecode/shepherd/pull/996) Step Element Target Action ([@WORMSS](https://github.com/WORMSS))
* [#995](https://github.com/shipshapecode/shepherd/pull/995) Added the correct this context to StepOption 'when' functions ([@WORMSS](https://github.com/WORMSS))

#### :bug: Bug Fix
* [#1039](https://github.com/shipshapecode/shepherd/pull/1039) Use isElement fot svg scrollIntoView support ([@rwwagner90](https://github.com/RobbieTheWagner))

#### :house: Internal
* [#1040](https://github.com/shipshapecode/shepherd/pull/1040) Add secondary property on StepOptionsButton ([@linsolas](https://github.com/linsolas))
* [#1006](https://github.com/shipshapecode/shepherd/pull/1006) Switch to svelte-jester, test with node 12 ([@rwwagner90](https://github.com/RobbieTheWagner))

#### Committers: 5
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))
- Romain Linsolas ([@linsolas](https://github.com/linsolas))
- WORMSS ([@WORMSS](https://github.com/WORMSS))
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)
- te ([@te1](https://github.com/te1))

## v8.0.1 (2020-05-30)

## v8.0.0 (2020-05-25)

#### :boom: Breaking Change
* [#982](https://github.com/shipshapecode/shepherd/pull/982) Officially drop IE 11 and remove from browserslist ([@rwwagner90](https://github.com/RobbieTheWagner))

#### :bug: Bug Fix
* [#979](https://github.com/shipshapecode/shepherd/pull/979) Require attachTo.on to show arrow ([@rwwagner90](https://github.com/RobbieTheWagner))

#### :memo: Documentation
* [#967](https://github.com/shipshapecode/shepherd/pull/967) 📝 Add cookbook item for multi item highlighting ([@chuckcarpenter](https://github.com/chuckcarpenter))

#### :house: Internal
* [#981](https://github.com/shipshapecode/shepherd/pull/981) Remove eslint from rollup, tweak tailwind ([@rwwagner90](https://github.com/RobbieTheWagner))

#### Committers: 3
- Chuck Carpenter ([@chuckcarpenter](https://github.com/chuckcarpenter))
- Robert Wagner ([@rwwagner90](https://github.com/RobbieTheWagner))
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)

# Changelog

## [v7.0.2](https://github.com/shipshapecode/shepherd/tree/v7.0.2) (2020-02-25)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v7.0.1...v7.0.2)

**Fixed bugs:**

- Fix bug when modifiers was not defined [\#811](https://github.com/shipshapecode/shepherd/pull/811) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- Installing v7.0.0 fails  [\#810](https://github.com/shipshapecode/shepherd/issues/810)

## [v7.0.1](https://github.com/shipshapecode/shepherd/tree/v7.0.1) (2020-02-24)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v7.0.0...v7.0.1)

## [v7.0.0](https://github.com/shipshapecode/shepherd/tree/v7.0.0) (2020-02-24)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v6.0.2...v7.0.0)

**Breaking changes:**

- \[WIP\] Popper v2 [\#752](https://github.com/shipshapecode/shepherd/pull/752) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Implemented enhancements:**

- Refactor back to Popper [\#744](https://github.com/shipshapecode/shepherd/issues/744)

**Fixed bugs:**

- Smooth scrolling not working? [\#788](https://github.com/shipshapecode/shepherd/issues/788)
- Overlay does not resize [\#751](https://github.com/shipshapecode/shepherd/issues/751)
- 🐛 Fix initial scroll to top before scrolling to target [\#801](https://github.com/shipshapecode/shepherd/pull/801) ([chuckcarpenter](https://github.com/chuckcarpenter))

**Closed issues:**

- .shepherd-arrow does not "flip" when scroll/resize causes a tour stop to switch sides [\#787](https://github.com/shipshapecode/shepherd/issues/787)
- Arrow position is incorrect for ion-fab element \#ionic [\#745](https://github.com/shipshapecode/shepherd/issues/745)
- shepherd in webview  does not show buttons [\#721](https://github.com/shipshapecode/shepherd/issues/721)

**Merged pull requests:**

- 🔥 Remove demo directory and use landing site as default [\#802](https://github.com/shipshapecode/shepherd/pull/802) ([chuckcarpenter](https://github.com/chuckcarpenter))
- 🐛 Fix step positioning for viewport [\#797](https://github.com/shipshapecode/shepherd/pull/797) ([chuckcarpenter](https://github.com/chuckcarpenter))

## [v6.0.2](https://github.com/shipshapecode/shepherd/tree/v6.0.2) (2019-11-08)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v6.0.1...v6.0.2)

## [v6.0.1](https://github.com/shipshapecode/shepherd/tree/v6.0.1) (2019-11-06)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v6.0.0...v6.0.1)

## [v5.0.0](https://github.com/shipshapecode/shepherd/tree/v5.0.0) (2019-08-25)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.6.0...v5.0.0)

**Breaking changes:**

- Remove style vendor prefixing [\#519](https://github.com/shipshapecode/shepherd/pull/519) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- showCancelLink -\> cancelIcon [\#518](https://github.com/shipshapecode/shepherd/pull/518) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove link styles [\#509](https://github.com/shipshapecode/shepherd/pull/509) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove Shepherd.Evented [\#506](https://github.com/shipshapecode/shepherd/pull/506) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Implemented enhancements:**

- Vue wrapper [\#333](https://github.com/shipshapecode/shepherd/issues/333)
- Add includeStyles option [\#526](https://github.com/shipshapecode/shepherd/pull/526) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Tie modal z-index to shepherdElementZIndex [\#523](https://github.com/shipshapecode/shepherd/pull/523) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add disableScroll to types [\#522](https://github.com/shipshapecode/shepherd/pull/522) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Types don't support activeTour or Evented properties. [\#504](https://github.com/shipshapecode/shepherd/issues/504)
- Remove object-assign-deep, refactor setting popper options [\#516](https://github.com/shipshapecode/shepherd/pull/516) ([genadis](https://github.com/genadis))
- Use requestAnimationFrame to position modal opening [\#514](https://github.com/shipshapecode/shepherd/pull/514) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add overlayOpacity to styleVariables options [\#512](https://github.com/shipshapecode/shepherd/pull/512) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add keyboardNav and exitOnEsc options [\#508](https://github.com/shipshapecode/shepherd/pull/508) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Move activeTour to namespace [\#507](https://github.com/shipshapecode/shepherd/pull/507) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- advanceOn click doesn't work on nested elements [\#511](https://github.com/shipshapecode/shepherd/issues/511)
- Use currentTarget for advanceOn [\#513](https://github.com/shipshapecode/shepherd/pull/513) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- Z-Index Issues [\#521](https://github.com/shipshapecode/shepherd/issues/521)
- ionic element - bubbles not pointing to right place due to clientHeight = 0 \(etc.\) [\#426](https://github.com/shipshapecode/shepherd/issues/426)
- Disable built in component styles [\#497](https://github.com/shipshapecode/shepherd/issues/497)
- Feature Request: I18n cancel link [\#499](https://github.com/shipshapecode/shepherd/issues/499)

**Merged pull requests:**

- Update rimraf to the latest version 🚀 [\#515](https://github.com/shipshapecode/shepherd/pull/515) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
- Update rollup-plugin-license to the latest version 🚀 [\#505](https://github.com/shipshapecode/shepherd/pull/505) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
- adding alt and role to img element [\#503](https://github.com/shipshapecode/shepherd/pull/503) ([MelSumner](https://github.com/MelSumner))
- fixing a11y issue by adding lang attribute to html element [\#501](https://github.com/shipshapecode/shepherd/pull/501) ([MelSumner](https://github.com/MelSumner))

## [v4.6.0](https://github.com/shipshapecode/shepherd/tree/v4.6.0) (2019-08-09)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.5.0...v4.6.0)

**Implemented enhancements:**

- Wrong type definition for scrollTo [\#490](https://github.com/shipshapecode/shepherd/issues/490)
- Fade in modal overlay [\#496](https://github.com/shipshapecode/shepherd/pull/496) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Fix for the wrong type definition of StepOptions.scrollTo [\#494](https://github.com/shipshapecode/shepherd/pull/494) ([moxival](https://github.com/moxival))

## [v4.5.0](https://github.com/shipshapecode/shepherd/tree/v4.5.0) (2019-08-09)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.4.1...v4.5.0)

**Fixed bugs:**

- Passing 'HTMLElement' to tour.addStep{ text: ... } doesn't work anymore [\#492](https://github.com/shipshapecode/shepherd/issues/492)
- Support passing elements for text [\#493](https://github.com/shipshapecode/shepherd/pull/493) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v4.4.1](https://github.com/shipshapecode/shepherd/tree/v4.4.1) (2019-08-07)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.4.0...v4.4.1)

**Fixed bugs:**

- ShepherdClass missing after adding modifiers of popper [\#486](https://github.com/shipshapecode/shepherd/issues/486)
- Use objectAssignDeep to deeply merge tippyOptions [\#488](https://github.com/shipshapecode/shepherd/pull/488) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v4.4.0](https://github.com/shipshapecode/shepherd/tree/v4.4.0) (2019-08-05)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.3.4...v4.4.0)

**Implemented enhancements:**

- Add addSteps method and allow passing steps to tour constructor [\#485](https://github.com/shipshapecode/shepherd/pull/485) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- Shepherd.Tour constructor definition of steps errors with showOn being undefined [\#114](https://github.com/shipshapecode/shepherd/issues/114)

## [v4.3.4](https://github.com/shipshapecode/shepherd/tree/v4.3.4) (2019-08-04)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.3.3...v4.3.4)

**Implemented enhancements:**

- styleVariables missing in 'TourOptions' declaration and beforeShowStep not implemented [\#483](https://github.com/shipshapecode/shepherd/issues/483)
- Fix some types and docs [\#484](https://github.com/shipshapecode/shepherd/pull/484) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v4.3.3](https://github.com/shipshapecode/shepherd/tree/v4.3.3) (2019-08-02)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.3.2...v4.3.3)

**Implemented enhancements:**

- Fix some TypeScript issues [\#482](https://github.com/shipshapecode/shepherd/pull/482) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v4.3.2](https://github.com/shipshapecode/shepherd/tree/v4.3.2) (2019-08-02)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.3.1...v4.3.2)

**Implemented enhancements:**

- Add confirmCancel and confirmCancelMessage to types [\#480](https://github.com/shipshapecode/shepherd/pull/480) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v4.3.1](https://github.com/shipshapecode/shepherd/tree/v4.3.1) (2019-08-02)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.3.0...v4.3.1)

**Implemented enhancements:**

- Closing the tour should move the focus back to the element that opened it [\#473](https://github.com/shipshapecode/shepherd/issues/473)
- Return focus after closing the tour [\#479](https://github.com/shipshapecode/shepherd/pull/479) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Merged pull requests:**

- Update rollup-plugin-license to the latest version 🚀 [\#478](https://github.com/shipshapecode/shepherd/pull/478) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v4.3.0](https://github.com/shipshapecode/shepherd/tree/v4.3.0) (2019-08-01)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.2.0...v4.3.0)

**Implemented enhancements:**

- Add option to specify container element for the modal [\#474](https://github.com/shipshapecode/shepherd/pull/474) ([genadis](https://github.com/genadis))

**Fixed bugs:**

- Fix cancel link color for when the header has dark background [\#477](https://github.com/shipshapecode/shepherd/pull/477) ([genadis](https://github.com/genadis))
- Fix content border radius [\#476](https://github.com/shipshapecode/shepherd/pull/476) ([genadis](https://github.com/genadis))
- Fix applying tippyOptions [\#475](https://github.com/shipshapecode/shepherd/pull/475) ([genadis](https://github.com/genadis))

## [v4.2.0](https://github.com/shipshapecode/shepherd/tree/v4.2.0) (2019-07-31)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.1.0...v4.2.0)

**Implemented enhancements:**

- Accessibility support [\#198](https://github.com/shipshapecode/shepherd/issues/198)
- Remove shepherdElementWidth option [\#471](https://github.com/shipshapecode/shepherd/pull/471) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v4.1.0](https://github.com/shipshapecode/shepherd/tree/v4.1.0) (2019-07-30)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v4.0.0...v4.1.0)

**Implemented enhancements:**

- Make cancel link more accessible [\#469](https://github.com/shipshapecode/shepherd/pull/469) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- switched to default export in TS typing [\#468](https://github.com/shipshapecode/shepherd/pull/468) ([grycmat](https://github.com/grycmat))

## [v4.0.0](https://github.com/shipshapecode/shepherd/tree/v4.0.0) (2019-07-29)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v3.1.0...v4.0.0)

**Breaking changes:**

- Switch modals from ids to classes and prefix them [\#466](https://github.com/shipshapecode/shepherd/pull/466) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Simplify addStep API [\#464](https://github.com/shipshapecode/shepherd/pull/464) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove predefined themes [\#462](https://github.com/shipshapecode/shepherd/pull/462) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Switch to CSSinJS [\#450](https://github.com/shipshapecode/shepherd/pull/450) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Use autoBind, pass context rather than manually binding [\#440](https://github.com/shipshapecode/shepherd/pull/440) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove array support for `step.options.text` [\#429](https://github.com/shipshapecode/shepherd/pull/429) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- .shepherd-popper -\> .shepherd, move .shepherd-has-title [\#422](https://github.com/shipshapecode/shepherd/pull/422) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Tippy v5 [\#420](https://github.com/shipshapecode/shepherd/pull/420) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove remaining lodash, IE 11+ [\#419](https://github.com/shipshapecode/shepherd/pull/419) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove the string option for `advanceOn` in favor of object [\#418](https://github.com/shipshapecode/shepherd/pull/418) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove string option for `attachTo` in favor of object [\#417](https://github.com/shipshapecode/shepherd/pull/417) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- ommiting 'on' doesn't work [\#460](https://github.com/shipshapecode/shepherd/issues/460)
- Modal mask opening shows back up on scroll [\#444](https://github.com/shipshapecode/shepherd/issues/444)
- IE11 support is broken [\#437](https://github.com/shipshapecode/shepherd/issues/437)
- Incorrect path to typings files in package.json [\#435](https://github.com/shipshapecode/shepherd/issues/435)
- Start fixing IE11 support [\#438](https://github.com/shipshapecode/shepherd/pull/438) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- fix for incorrect types path in package.json [\#434](https://github.com/shipshapecode/shepherd/pull/434) ([cmcnicholas](https://github.com/cmcnicholas))
- Arrow navigation skips steps if you do back then next [\#423](https://github.com/shipshapecode/shepherd/issues/423)
- Only add keydown listeners once [\#424](https://github.com/shipshapecode/shepherd/pull/424) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- useModalOverlay does not play well with multiple instances on the page [\#370](https://github.com/shipshapecode/shepherd/issues/370)

**Implemented enhancements:**

- Make build smaller, while still supporting IE11 [\#467](https://github.com/shipshapecode/shepherd/pull/467) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Convert to Preact components [\#458](https://github.com/shipshapecode/shepherd/pull/458) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add first class support for secondary button [\#457](https://github.com/shipshapecode/shepherd/pull/457) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Prefixes fixes [\#453](https://github.com/shipshapecode/shepherd/pull/453) ([genadis](https://github.com/genadis))
- Add prefix to data attributes [\#452](https://github.com/shipshapecode/shepherd/pull/452) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Import ES5 bodyScrollLock, use babel-transform-runtime [\#447](https://github.com/shipshapecode/shepherd/pull/447) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove drop util [\#436](https://github.com/shipshapecode/shepherd/pull/436) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Cleanup public/private API [\#430](https://github.com/shipshapecode/shepherd/pull/430) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- An in-range update of eslint-plugin-jest is breaking the build 🚨 [\#443](https://github.com/shipshapecode/shepherd/issues/443)
- Modal classes are not prefixed [\#456](https://github.com/shipshapecode/shepherd/issues/456)
- fix removing 'shepherd-modal-target' [\#455](https://github.com/shipshapecode/shepherd/issues/455)
- Document canClickTarget [\#461](https://github.com/shipshapecode/shepherd/issues/461)

**Merged pull requests:**

- Document canClickTarget [\#465](https://github.com/shipshapecode/shepherd/pull/465) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add index to 'show' and 'cancel' events [\#454](https://github.com/shipshapecode/shepherd/pull/454) ([genadis](https://github.com/genadis))
- Remove Eager [\#451](https://github.com/shipshapecode/shepherd/pull/451) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add StackShare badge [\#446](https://github.com/shipshapecode/shepherd/pull/446) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Transpile auto-bind [\#441](https://github.com/shipshapecode/shepherd/pull/441) ([RobbieTheWagner](https://github.com/RobbieTheWagner)
- Update del to the latest version 🚀 [\#425](https://github.com/shipshapecode/shepherd/pull/425) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v3.1.0](https://github.com/shipshapecode/shepherd/tree/v3.1.0) (2019-06-25)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v3.0.0...v3.1.0)

**Fixed bugs:**

- Fix jumpy disableScroll [\#416](https://github.com/shipshapecode/shepherd/pull/416) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Reuse existing modal overlay [\#414](https://github.com/shipshapecode/shepherd/pull/414) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Merged pull requests:**

- Update rollup-plugin-eslint to the latest version 🚀 [\#415](https://github.com/shipshapecode/shepherd/pull/415) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v3.0.0](https://github.com/shipshapecode/shepherd/tree/v3.0.0) (2019-06-23)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.10.0...v3.0.0)

**Breaking changes:**

- Remove ul, li button wrapper [\#409](https://github.com/shipshapecode/shepherd/pull/409) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Implemented enhancements:**

- Support to keyboard navigation [\#406](https://github.com/shipshapecode/shepherd/issues/406)
- Feature request --- Add Typescript Typings [\#359](https://github.com/shipshapecode/shepherd/issues/359)
- Add `disableScroll` option [\#413](https://github.com/shipshapecode/shepherd/pull/413) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add aria-describedby and aria-labeledby [\#411](https://github.com/shipshapecode/shepherd/pull/411) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Arrow nav [\#410](https://github.com/shipshapecode/shepherd/pull/410) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add focus trap, to disallow tabbing outside the modal [\#408](https://github.com/shipshapecode/shepherd/pull/408) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Support close with ESC, focus tooltip on `show` [\#407](https://github.com/shipshapecode/shepherd/pull/407) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Merged pull requests:**

- Update eslint to the latest version 🚀 [\#412](https://github.com/shipshapecode/shepherd/pull/412) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
- Greenkeeper/rollup plugin visualizer 2.1.1 [\#404](https://github.com/shipshapecode/shepherd/pull/404) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.10.0](https://github.com/shipshapecode/shepherd/tree/v2.10.0) (2019-06-13)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.9.1...v2.10.0)

**Implemented enhancements:**

- Add scrollIntoView options and polyfill [\#402](https://github.com/shipshapecode/shepherd/pull/402) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add TypeScript definitions [\#360](https://github.com/shipshapecode/shepherd/pull/360) ([superheri](https://github.com/superheri))

**Fixed bugs:**

- "TypeError: Property 'handleEvent' is not callable." in Firefox [\#393](https://github.com/shipshapecode/shepherd/issues/393)
- Remove addStepEventListeners call [\#396](https://github.com/shipshapecode/shepherd/pull/396) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- \[Proposal\] center elements for scrollTo [\#398](https://github.com/shipshapecode/shepherd/issues/398)
- An in-range update of rollup is breaking the build 🚨 [\#392](https://github.com/shipshapecode/shepherd/issues/392)

**Merged pull requests:**

- build support for windows \(rm does not exist\) [\#403](https://github.com/shipshapecode/shepherd/pull/403) ([hheexx](https://github.com/hheexx))
- Update stylelint-config-ship-shape to the latest version 🚀 [\#399](https://github.com/shipshapecode/shepherd/pull/399) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v2.9.1](https://github.com/shipshapecode/shepherd/tree/v2.9.1) (2019-06-09)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.9.0...v2.9.1)

**Implemented enhancements:**

- Tippy 4.3.4, bump deps, fix lint [\#395](https://github.com/shipshapecode/shepherd/pull/395) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Fix modal padding test failures, add tests, docs [\#390](https://github.com/shipshapecode/shepherd/pull/390) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- An in-range update of autoprefixer is breaking the build 🚨 [\#388](https://github.com/shipshapecode/shepherd/issues/388)
- An in-range update of tippy.js is breaking the build 🚨 [\#387](https://github.com/shipshapecode/shepherd/issues/387)
- An in-range update of rollup-plugin-analyzer is breaking the build 🚨 [\#386](https://github.com/shipshapecode/shepherd/issues/386)
- An in-range update of rollup-plugin-node-resolve is breaking the build 🚨 [\#385](https://github.com/shipshapecode/shepherd/issues/385)
- An in-range update of rollup is breaking the build 🚨 [\#384](https://github.com/shipshapecode/shepherd/issues/384)
- Add space around attachedElement [\#379](https://github.com/shipshapecode/shepherd/issues/379)

**Merged pull requests:**

- Optional padding on modalOverlayOpening [\#383](https://github.com/shipshapecode/shepherd/pull/383) ([skmbr](https://github.com/skmbr))

## [v2.9.0](https://github.com/shipshapecode/shepherd/tree/v2.9.0) (2019-05-26)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.8.0...v2.9.0)

**Implemented enhancements:**

- Add back IE support [\#380](https://github.com/shipshapecode/shepherd/pull/380) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- Show event of tour does not pass the hash of `step` and `previous` [\#371](https://github.com/shipshapecode/shepherd/issues/371)
- Ensure arguments are passed down to trigger [\#381](https://github.com/shipshapecode/shepherd/pull/381) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- Is it possible to change fill color of the modal ? [\#374](https://github.com/shipshapecode/shepherd/issues/374)
- There will be blue edges after clicking [\#369](https://github.com/shipshapecode/shepherd/issues/369)
- \[Suggestion\] Add transition effects when the mask moving [\#304](https://github.com/shipshapecode/shepherd/issues/304)

**Merged pull requests:**

- Update rollup-plugin-eslint to the latest version 🚀 [\#378](https://github.com/shipshapecode/shepherd/pull/378) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
- Update rollup-plugin-terser to the latest version 🚀 [\#376](https://github.com/shipshapecode/shepherd/pull/376) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
- Update rollup-plugin-node-resolve to the latest version 🚀 [\#373](https://github.com/shipshapecode/shepherd/pull/373) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v2.8.0](https://github.com/shipshapecode/shepherd/tree/v2.8.0) (2019-05-03)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.7.0...v2.8.0)

**Implemented enhancements:**

- Convert several lodash functions to internal utils [\#368](https://github.com/shipshapecode/shepherd/pull/368) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Use internal debounce function [\#367](https://github.com/shipshapecode/shepherd/pull/367) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Greenkeeper/stylelint 10.0.1 [\#362](https://github.com/shipshapecode/shepherd/pull/362) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- Shepherd popper-tippy CSS styles mixing up with non-shepherd tippy styles on the page [\#363](https://github.com/shipshapecode/shepherd/issues/363)

**Closed issues:**

- An in-range update of rollup is breaking the build 🚨 [\#350](https://github.com/shipshapecode/shepherd/issues/350)

**Merged pull requests:**

- Added 'shepherd-popper' css class [\#366](https://github.com/shipshapecode/shepherd/pull/366) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add ESDoc, bump some deps [\#365](https://github.com/shipshapecode/shepherd/pull/365) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.7.0](https://github.com/shipshapecode/shepherd/tree/v2.7.0) (2019-04-22)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.6.0...v2.7.0)

**Fixed bugs:**

- After tour is canceled/completed and started again, overlay is not present anymore [\#347](https://github.com/shipshapecode/shepherd/issues/347)
- Add createModalOverlay function [\#358](https://github.com/shipshapecode/shepherd/pull/358) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Merged pull requests:**

- \[BugFix\] Issue \#347 [\#357](https://github.com/shipshapecode/shepherd/pull/357) ([jayjfletcher](https://github.com/jayjfletcher))

## [v2.6.0](https://github.com/shipshapecode/shepherd/tree/v2.6.0) (2019-04-15)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.5.0...v2.6.0)

**Implemented enhancements:**

- React wrapper [\#331](https://github.com/shipshapecode/shepherd/issues/331)

**Fixed bugs:**

- Minified File Size [\#354](https://github.com/shipshapecode/shepherd/issues/354)
- Fix inflated build size, bump some deps [\#355](https://github.com/shipshapecode/shepherd/pull/355) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.5.0](https://github.com/shipshapecode/shepherd/tree/v2.5.0) (2019-03-20)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.4.0...v2.5.0)

**Breaking changes:**

- Drop IE support, bump some deps [\#344](https://github.com/shipshapecode/shepherd/pull/344) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- Shepherd Doesn't Work Good On Mobile [\#339](https://github.com/shipshapecode/shepherd/issues/339)
- Fix demo app arrows to be title color [\#314](https://github.com/shipshapecode/shepherd/issues/314)

**Merged pull requests:**

- Add flipping tippy by default, scrollTo for demo [\#345](https://github.com/shipshapecode/shepherd/pull/345) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Update del to the latest version 🚀 [\#340](https://github.com/shipshapecode/shepherd/pull/340) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v2.4.0](https://github.com/shipshapecode/shepherd/tree/v2.4.0) (2019-02-27)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.3.3...v2.4.0)

**Implemented enhancements:**

- Angular wrapper [\#332](https://github.com/shipshapecode/shepherd/issues/332)
- Add tabindex="0" to shepherd-button [\#337](https://github.com/shipshapecode/shepherd/pull/337) ([knoobie](https://github.com/knoobie))

**Fixed bugs:**

- Links in modal mode [\#328](https://github.com/shipshapecode/shepherd/issues/328)
- svg mask for the opening in browsers do not support getBoundingClientRect\(\).x|y [\#330](https://github.com/shipshapecode/shepherd/pull/330) ([yaxinr](https://github.com/yaxinr))

**Merged pull requests:**

- Tippy 4 [\#336](https://github.com/shipshapecode/shepherd/pull/336) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Fix inability to click things in shepherd-element [\#334](https://github.com/shipshapecode/shepherd/pull/334) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Update rollup-plugin-css-only to the latest version 🚀 [\#327](https://github.com/shipshapecode/shepherd/pull/327) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v2.3.3](https://github.com/shipshapecode/shepherd/tree/v2.3.3) (2019-01-23)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.3.2...v2.3.3)

**Fixed bugs:**

- Adds missing 'hide' to binded methods list in Tour [\#326](https://github.com/shipshapecode/shepherd/pull/326) ([seppsepp](https://github.com/seppsepp))

**Merged pull requests:**

- Update rollup-plugin-babel-minify to the latest version 🚀 [\#325](https://github.com/shipshapecode/shepherd/pull/325) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v2.3.2](https://github.com/shipshapecode/shepherd/tree/v2.3.2) (2019-01-16)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.3.1...v2.3.2)

**Fixed bugs:**

- Object.assign not transpiled [\#323](https://github.com/shipshapecode/shepherd/issues/323)
- Toggling developer tools breaks modal mask [\#320](https://github.com/shipshapecode/shepherd/issues/320)
- Scrolling to an element causes modal overlay to appear in wrong place [\#319](https://github.com/shipshapecode/shepherd/issues/319)

**Merged pull requests:**

- Use @babel/plugin-transform-object-assign [\#324](https://github.com/shipshapecode/shepherd/pull/324) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Apply scroll listener to all scroll events [\#322](https://github.com/shipshapecode/shepherd/pull/322) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Use vh and vw to ensure modal is always full screen [\#321](https://github.com/shipshapecode/shepherd/pull/321) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.3.1](https://github.com/shipshapecode/shepherd/tree/v2.3.1) (2019-01-15)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.3.0...v2.3.1)

**Fixed bugs:**

- fix: move touchmove event listener cleanup out of if statement [\#317](https://github.com/shipshapecode/shepherd/pull/317) ([chuckcarpenter](https://github.com/chuckcarpenter))

**Merged pull requests:**

- Update rollup-plugin-license to the latest version 🚀 [\#318](https://github.com/shipshapecode/shepherd/pull/318) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v2.3.0](https://github.com/shipshapecode/shepherd/tree/v2.3.0) (2019-01-14)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.2.0...v2.3.0)

**Implemented enhancements:**

- Inject tippy CSS to head [\#315](https://github.com/shipshapecode/shepherd/pull/315) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.2.0](https://github.com/shipshapecode/shepherd/tree/v2.2.0) (2019-01-14)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.1.1...v2.2.0)

**Implemented enhancements:**

- setAttributeNS -\> setAttribute, add modal utils tests [\#312](https://github.com/shipshapecode/shepherd/pull/312) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Use rollup instead of webpack [\#309](https://github.com/shipshapecode/shepherd/pull/309) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.1.1](https://github.com/shipshapecode/shepherd/tree/v2.1.1) (2019-01-11)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.1.0...v2.1.1)

**Fixed bugs:**

- Use correct cleanupStepEventListeners [\#311](https://github.com/shipshapecode/shepherd/pull/311) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.1.0](https://github.com/shipshapecode/shepherd/tree/v2.1.0) (2019-01-06)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.2...v2.1.0)

**Fixed bugs:**

- fix: turn off passive events for touchmove on Safari \> 10 [\#307](https://github.com/shipshapecode/shepherd/pull/307) ([chuckcarpenter](https://github.com/chuckcarpenter))

**Merged pull requests:**

- Move modal to its own class [\#308](https://github.com/shipshapecode/shepherd/pull/308) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.0.2](https://github.com/shipshapecode/shepherd/tree/v2.0.2) (2019-01-04)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.1...v2.0.2)

**Fixed bugs:**

- fix: remove class when modal hidden so elements are clickable [\#305](https://github.com/shipshapecode/shepherd/pull/305) ([chuckcarpenter](https://github.com/chuckcarpenter))

## [v2.0.1](https://github.com/shipshapecode/shepherd/tree/v2.0.1) (2018-12-31)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0...v2.0.1)

## [v2.0.0](https://github.com/shipshapecode/shepherd/tree/v2.0.0) (2018-12-31)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.35...v2.0.0)

**Implemented enhancements:**

- Add data attribute to the body for the currently active tour name and current step [\#284](https://github.com/shipshapecode/shepherd/issues/284)
- Use data attributes for element selection in demo/tests [\#273](https://github.com/shipshapecode/shepherd/issues/273)

**Closed issues:**

- An in-range update of autoprefixer is breaking the build 🚨 [\#298](https://github.com/shipshapecode/shepherd/issues/298)
- An in-range update of webpack is breaking the build 🚨 [\#297](https://github.com/shipshapecode/shepherd/issues/297)

**Merged pull requests:**

- Integrate modal functionality that was originally in Ember Shepherd [\#301](https://github.com/shipshapecode/shepherd/pull/301) ([BrianSipple](https://github.com/BrianSipple))
- Use data attributes for test selectors [\#299](https://github.com/shipshapecode/shepherd/pull/299) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Remove redundant `id` attribute on step tooltip containers. [\#295](https://github.com/shipshapecode/shepherd/pull/295) ([BrianSipple](https://github.com/BrianSipple))
- Link to Shepherd's Tippy defaults in docs [\#294](https://github.com/shipshapecode/shepherd/pull/294) ([BrianSipple](https://github.com/BrianSipple))

## [v2.0.0-beta.35](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.35) (2018-11-09)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.34...v2.0.0-beta.35)

**Implemented enhancements:**

- Document Tour.removeStep [\#278](https://github.com/shipshapecode/shepherd/issues/278)
- Update documentation to clarify arrow usage. [\#287](https://github.com/shipshapecode/shepherd/pull/287) ([BrianSipple](https://github.com/BrianSipple))

**Fixed bugs:**

- fix tooltip centering [\#288](https://github.com/shipshapecode/shepherd/pull/288) ([BrianSipple](https://github.com/BrianSipple))

**Closed issues:**

- An in-range update of start-server-and-test is breaking the build 🚨 [\#283](https://github.com/shipshapecode/shepherd/issues/283)

**Merged pull requests:**

- Bump deps [\#291](https://github.com/shipshapecode/shepherd/pull/291) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add testing for `Tour.isActive`. [\#290](https://github.com/shipshapecode/shepherd/pull/290) ([BrianSipple](https://github.com/BrianSipple))
- Added documentation for tour.removeStep \(fixes \#278\) [\#289](https://github.com/shipshapecode/shepherd/pull/289) ([joeinnes](https://github.com/joeinnes))
- Improve CodeClimate and test coverage. [\#286](https://github.com/shipshapecode/shepherd/pull/286) ([BrianSipple](https://github.com/BrianSipple))
- Remove unnecessary management of `this.el.hidden` [\#285](https://github.com/shipshapecode/shepherd/pull/285) ([BrianSipple](https://github.com/BrianSipple))

## [v2.0.0-beta.34](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.34) (2018-10-23)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.33...v2.0.0-beta.34)

**Implemented enhancements:**

- Change `data-id` to `data-shepherd-step-id` on Step content elements. [\#282](https://github.com/shipshapecode/shepherd/pull/282) ([BrianSipple](https://github.com/BrianSipple))

**Closed issues:**

- An in-range update of webpack is breaking the build 🚨 [\#280](https://github.com/shipshapecode/shepherd/issues/280)

## [v2.0.0-beta.33](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.33) (2018-10-19)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.32...v2.0.0-beta.33)

**Implemented enhancements:**

- Add minified js + css to release package [\#258](https://github.com/shipshapecode/shepherd/issues/258)
- Bump a bunch of deps [\#281](https://github.com/shipshapecode/shepherd/pull/281) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- Exit animations don't play before step tooltip disappears. [\#277](https://github.com/shipshapecode/shepherd/issues/277)
- Allow exit animations to play before step tooltip disappears. [\#279](https://github.com/shipshapecode/shepherd/pull/279) ([BrianSipple](https://github.com/BrianSipple))
- Remove default arrow setting on centered tippy [\#275](https://github.com/shipshapecode/shepherd/pull/275) ([chuckcarpenter](https://github.com/chuckcarpenter))

**Merged pull requests:**

- Fix bug of classes not being added to targets on returned-to steps. [\#276](https://github.com/shipshapecode/shepherd/pull/276) ([BrianSipple](https://github.com/BrianSipple))

## [v2.0.0-beta.32](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.32) (2018-10-13)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.31...v2.0.0-beta.32)

## [v2.0.0-beta.31](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.31) (2018-10-13)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.30...v2.0.0-beta.31)

## [v2.0.0-beta.30](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.30) (2018-10-13)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.29...v2.0.0-beta.30)

**Implemented enhancements:**

- Hide buttons if none are passed to `Step.options.buttons` [\#243](https://github.com/shipshapecode/shepherd/issues/243)
- Constrain input for `Step.options.buttons` to an array of buttons. [\#271](https://github.com/shipshapecode/shepherd/pull/271) ([BrianSipple](https://github.com/BrianSipple))

**Merged pull requests:**

- fix docs typo [\#272](https://github.com/shipshapecode/shepherd/pull/272) ([BrianSipple](https://github.com/BrianSipple))

## [v2.0.0-beta.29](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.29) (2018-10-11)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.28...v2.0.0-beta.29)

**Implemented enhancements:**

- Bundle minified Tippy code with distribution [\#263](https://github.com/shipshapecode/shepherd/issues/263)
- Implement `Tour.hide` [\#265](https://github.com/shipshapecode/shepherd/pull/265) ([BrianSipple](https://github.com/BrianSipple))

**Fixed bugs:**

- Remove or restore hide method on Tour instance [\#249](https://github.com/shipshapecode/shepherd/issues/249)

**Closed issues:**

- An in-range update of tippy.js is breaking the build 🚨 [\#266](https://github.com/shipshapecode/shepherd/issues/266)

**Merged pull requests:**

- Bundle tippy with the main Shepherd distribution file. [\#270](https://github.com/shipshapecode/shepherd/pull/270) ([BrianSipple](https://github.com/BrianSipple))
- remove spm from package.json [\#269](https://github.com/shipshapecode/shepherd/pull/269) ([BrianSipple](https://github.com/BrianSipple))
- remove some popper arrow styles and target tippy-arrow [\#268](https://github.com/shipshapecode/shepherd/pull/268) ([chuckcarpenter](https://github.com/chuckcarpenter))
- Update screenshot of intro step in README [\#264](https://github.com/shipshapecode/shepherd/pull/264) ([BrianSipple](https://github.com/BrianSipple))

## [v2.0.0-beta.28](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.28) (2018-10-08)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.27...v2.0.0-beta.28)

**Implemented enhancements:**

- Not all of popper.js placement values are supported [\#259](https://github.com/shipshapecode/shepherd/issues/259)
- Integrate Tippy for step modal creation [\#255](https://github.com/shipshapecode/shepherd/issues/255)
- Tippy.js Integration [\#261](https://github.com/shipshapecode/shepherd/pull/261) ([BrianSipple](https://github.com/BrianSipple))

**Merged pull requests:**

- use uniqueId for step ID prop over idAttribute [\#262](https://github.com/shipshapecode/shepherd/pull/262) ([chuckcarpenter](https://github.com/chuckcarpenter))
- Support placement values and modifiers according to popper.js API \(\#259\) [\#260](https://github.com/shipshapecode/shepherd/pull/260) ([tedbeer](https://github.com/tedbeer))
- Change localhost port for cypress tests and document how its used [\#257](https://github.com/shipshapecode/shepherd/pull/257) ([BrianSipple](https://github.com/BrianSipple))
- replace hubspot favicons with shipshape favicons [\#256](https://github.com/shipshapecode/shepherd/pull/256) ([BrianSipple](https://github.com/BrianSipple))
- documentation update: add beforeShowPromise example [\#253](https://github.com/shipshapecode/shepherd/pull/253) ([jaffadog](https://github.com/jaffadog))
- Update uglifyjs-webpack-plugin to the latest version 🚀 [\#247](https://github.com/shipshapecode/shepherd/pull/247) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
- Update theming documentation. [\#242](https://github.com/shipshapecode/shepherd/pull/242) ([BrianSipple](https://github.com/BrianSipple))

## [v2.0.0-beta.27](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.27) (2018-09-13)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.26...v2.0.0-beta.27)

**Breaking changes:**

- Rename `Tour.options.defaults` to `Tour.options.defaultStepOptions`. [\#244](https://github.com/shipshapecode/shepherd/pull/244) ([BrianSipple](https://github.com/BrianSipple))

**Implemented enhancements:**

- Change `tour.options.defaults` to `tour.options.stepOptions` [\#240](https://github.com/shipshapecode/shepherd/issues/240)

**Merged pull requests:**

- Greenkeeper/babel plugin add module exports 1.0.0 [\#246](https://github.com/shipshapecode/shepherd/pull/246) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.0.0-beta.26](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.26) (2018-09-07)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.25...v2.0.0-beta.26)

**Fixed bugs:**

- Build syntax errors and element.prepend function not supported \(Internet Explorer\) [\#238](https://github.com/shipshapecode/shepherd/issues/238)
- Syntax errors and ParentNode.prepend not supported in IE [\#239](https://github.com/shipshapecode/shepherd/pull/239) ([alexdaube](https://github.com/alexdaube))

## [v2.0.0-beta.25](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.25) (2018-09-06)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.24...v2.0.0-beta.25)

## [v2.0.0-beta.24](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.24) (2018-09-05)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.23...v2.0.0-beta.24)

**Implemented enhancements:**

- Way to get user to confirm quitting a tutorial [\#133](https://github.com/shipshapecode/shepherd/issues/133)
- Add step options to ESDoc [\#234](https://github.com/shipshapecode/shepherd/pull/234) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Add Confirm cancel [\#232](https://github.com/shipshapecode/shepherd/pull/232) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- improved theming [\#204](https://github.com/shipshapecode/shepherd/pull/204) ([bm2u](https://github.com/bm2u))

**Fixed bugs:**

- advanceOn doesn't complete tour [\#93](https://github.com/shipshapecode/shepherd/issues/93)
- advanceOn blur? [\#89](https://github.com/shipshapecode/shepherd/issues/89)

**Closed issues:**

- Action required: Greenkeeper could not be activated 🚨 [\#227](https://github.com/shipshapecode/shepherd/issues/227)

**Merged pull requests:**

- add `.vscode` directory to `.gitignore` [\#237](https://github.com/shipshapecode/shepherd/pull/237) ([BrianSipple](https://github.com/BrianSipple))
- Update extract-loader to the latest version 🚀 [\#236](https://github.com/shipshapecode/shepherd/pull/236) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))
- \[Issue/89\]- add onCapture setting to bubble events such as blur for tour elements… [\#233](https://github.com/shipshapecode/shepherd/pull/233) ([chuckcarpenter](https://github.com/chuckcarpenter))

## [v2.0.0-beta.23](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.23) (2018-08-29)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.22...v2.0.0-beta.23)

**Implemented enhancements:**

- Update to Babel 7, use lodash-es [\#231](https://github.com/shipshapecode/shepherd/pull/231) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Merged pull requests:**

- add more tests for increased coverage [\#230](https://github.com/shipshapecode/shepherd/pull/230) ([chuckcarpenter](https://github.com/chuckcarpenter))
- Update dependencies to enable Greenkeeper 🌴 [\#229](https://github.com/shipshapecode/shepherd/pull/229) ([greenkeeper[bot]](https://github.com/apps/greenkeeper))

## [v2.0.0-beta.22](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.22) (2018-08-29)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.21...v2.0.0-beta.22)

**Implemented enhancements:**

- Implement ESDoc [\#226](https://github.com/shipshapecode/shepherd/pull/226) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- Fix cancel on any step with a title [\#228](https://github.com/shipshapecode/shepherd/pull/228) ([chuckcarpenter](https://github.com/chuckcarpenter))

## [v2.0.0-beta.21](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.21) (2018-08-27)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.20...v2.0.0-beta.21)

**Merged pull requests:**

- Merge coverage from cypress and unit tests [\#225](https://github.com/shipshapecode/shepherd/pull/225) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Renaming of scss source dir [\#219](https://github.com/shipshapecode/shepherd/pull/219) ([bm2u](https://github.com/bm2u))

## [v2.0.0-beta.20](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.20) (2018-08-26)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.19...v2.0.0-beta.20)

**Implemented enhancements:**

- Increase test coverage, refactor, and cleanup [\#224](https://github.com/shipshapecode/shepherd/pull/224) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.0.0-beta.19](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.19) (2018-08-25)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.18...v2.0.0-beta.19)

## [v2.0.0-beta.18](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.18) (2018-08-25)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.17...v2.0.0-beta.18)

**Implemented enhancements:**

- Add some tour tests [\#216](https://github.com/shipshapecode/shepherd/pull/216) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Testing for Evented module [\#215](https://github.com/shipshapecode/shepherd/pull/215) ([chuckcarpenter](https://github.com/chuckcarpenter))

**Fixed bugs:**

- ES2015 imports not working [\#210](https://github.com/shipshapecode/shepherd/issues/210)
- Fix issue with cancel button [\#220](https://github.com/shipshapecode/shepherd/pull/220) ([chuckcarpenter](https://github.com/chuckcarpenter))

**Merged pull requests:**

- Move bind methods to their own file [\#222](https://github.com/shipshapecode/shepherd/pull/222) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Start some refactoring [\#221](https://github.com/shipshapecode/shepherd/pull/221) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Step.js coverage increase [\#218](https://github.com/shipshapecode/shepherd/pull/218) ([chuckcarpenter](https://github.com/chuckcarpenter))
- Reduce Evented complexity [\#217](https://github.com/shipshapecode/shepherd/pull/217) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- Start refactoring for Code Climate [\#214](https://github.com/shipshapecode/shepherd/pull/214) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.0.0-beta.17](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.17) (2018-08-15)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.16...v2.0.0-beta.17)

**Merged pull requests:**

- Feature/webpack [\#212](https://github.com/shipshapecode/shepherd/pull/212) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

## [v2.0.0-beta.16](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.16) (2018-08-14)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.15...v2.0.0-beta.16)

**Implemented enhancements:**

- \[feature/builder\] - replace Gulp with module loader and npm [\#203](https://github.com/shipshapecode/shepherd/pull/203) ([chuckcarpenter](https://github.com/chuckcarpenter))

**Fixed bugs:**

- Uncaught TypeError: \_shepherd2.default.Tour is not a constructor [\#202](https://github.com/shipshapecode/shepherd/issues/202)

**Merged pull requests:**

- Start on cypress [\#209](https://github.com/shipshapecode/shepherd/pull/209) ([RobbieTheWagner](https://github.com/RobbieTheWagner))
- increase test coverage [\#206](https://github.com/shipshapecode/shepherd/pull/206) ([chuckcarpenter](https://github.com/chuckcarpenter))

## [v2.0.0-beta.15](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.15) (2018-08-06)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.14...v2.0.0-beta.15)

**Fixed bugs:**

- Error: Cannot find module 'popper' from '\node\_modules\shepherd.js\dist\js' [\#201](https://github.com/shipshapecode/shepherd/issues/201)

## [v2.0.0-beta.14](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.14) (2018-08-02)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.13...v2.0.0-beta.14)

**Fixed bugs:**

- Error thrown if element not visible anymore [\#197](https://github.com/shipshapecode/shepherd/issues/197)

**Merged pull requests:**

- Basic testing framework [\#199](https://github.com/shipshapecode/shepherd/pull/199) ([chuckcarpenter](https://github.com/chuckcarpenter))
- Update documentation link in demo tour [\#195](https://github.com/shipshapecode/shepherd/pull/195) ([mikelkew](https://github.com/mikelkew))

## [v2.0.0-beta.13](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.13) (2018-07-16)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.12...v2.0.0-beta.13)

**Implemented enhancements:**

- Refactor css in shepherd-theme-arrows theme [\#52](https://github.com/shipshapecode/shepherd/issues/52)
- Automatically use theme if styles are included [\#1](https://github.com/shipshapecode/shepherd/issues/1)

## [v2.0.0-beta.12](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.12) (2018-07-12)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.11...v2.0.0-beta.12)

## [v2.0.0-beta.11](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.11) (2018-07-12)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.10...v2.0.0-beta.11)

**Implemented enhancements:**

- Attach shepherd-step to "custom" element / supporting dialog elements. [\#157](https://github.com/shipshapecode/shepherd/issues/157)
- Add renderLocation option [\#192](https://github.com/shipshapecode/shepherd/pull/192) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- Tours fail to load on Chrome 65  [\#180](https://github.com/shipshapecode/shepherd/issues/180)
- Step divs remain after tour has ended [\#66](https://github.com/shipshapecode/shepherd/issues/66)

**Closed issues:**

- Step class cleanup [\#36](https://github.com/shipshapecode/shepherd/issues/36)

## [v2.0.0-beta.10](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.10) (2018-07-11)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.9...v2.0.0-beta.10)

## [v2.0.0-beta.9](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.9) (2018-07-11)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.8...v2.0.0-beta.9)

**Implemented enhancements:**

- CSS should not be required to use this library [\#166](https://github.com/shipshapecode/shepherd/issues/166)

**Fixed bugs:**

- Arrows don't appear on some boxes randomly \(video\) [\#156](https://github.com/shipshapecode/shepherd/issues/156)

**Closed issues:**

- Undocumented `scrollToHandler` option [\#107](https://github.com/shipshapecode/shepherd/issues/107)

## [v2.0.0-beta.8](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.8) (2018-07-09)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.7...v2.0.0-beta.8)

## [v2.0.0-beta.7](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.7) (2018-07-07)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.6...v2.0.0-beta.7)

**Fixed bugs:**

- Use frame safe way for isArray\(\) & isObject\(\) [\#153](https://github.com/shipshapecode/shepherd/issues/153)
- remove shepherd-target class on tour.next\(\)/tour.back\(\) [\#109](https://github.com/shipshapecode/shepherd/issues/109)

**Closed issues:**

- Rethethering issue when target element is re-rendered. [\#112](https://github.com/shipshapecode/shepherd/issues/112)

## [v2.0.0-beta.6](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.6) (2018-07-07)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.5...v2.0.0-beta.6)

**Implemented enhancements:**

- Close button as HTML entity [\#148](https://github.com/shipshapecode/shepherd/pull/148) ([bm2u](https://github.com/bm2u))

**Fixed bugs:**

- Hide events being triggered twice when there is another step [\#167](https://github.com/shipshapecode/shepherd/issues/167)
- Removing duplicate call to hide step [\#168](https://github.com/shipshapecode/shepherd/pull/168) ([pedroceles](https://github.com/pedroceles))

**Closed issues:**

- The install doc is not working [\#179](https://github.com/shipshapecode/shepherd/issues/179)
- addStep not return step instance [\#165](https://github.com/shipshapecode/shepherd/issues/165)
- cancelling the tour when clicking outside the element [\#141](https://github.com/shipshapecode/shepherd/issues/141)
- showCancelLink yields weird characters [\#117](https://github.com/shipshapecode/shepherd/issues/117)

**Merged pull requests:**

- Added a demo tour at Simple Planner [\#155](https://github.com/shipshapecode/shepherd/pull/155) ([newscloud](https://github.com/newscloud))

## [v2.0.0-beta.5](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.5) (2018-07-03)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.4...v2.0.0-beta.5)

## [v2.0.0-beta.4](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.4) (2018-07-03)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.3...v2.0.0-beta.4)

## [v2.0.0-beta.3](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.3) (2018-07-03)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.2...v2.0.0-beta.3)

**Closed issues:**

- How can i use it with ionic 2 typescript? [\#174](https://github.com/shipshapecode/shepherd/issues/174)

## [v2.0.0-beta.2](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.2) (2018-07-02)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v2.0.0-beta.1...v2.0.0-beta.2)

## [v2.0.0-beta.1](https://github.com/shipshapecode/shepherd/tree/v2.0.0-beta.1) (2018-07-02)

[Full Changelog](https://github.com/shipshapecode/shepherd/compare/v1.8.1...v2.0.0-beta.1)

**Implemented enhancements:**

- Convert to popper [\#189](https://github.com/shipshapecode/shepherd/pull/189) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Fixed bugs:**

- Attempting to fix uncaught exception caused by non-existing element f… [\#190](https://github.com/shipshapecode/shepherd/pull/190) ([RobbieTheWagner](https://github.com/RobbieTheWagner))

**Closed issues:**

- href of the "View docs" button on demo site --\> 404 [\#187](https://github.com/shipshapecode/shepherd/issues/187)
- Demo site is down [\#185](https://github.com/shipshapecode/shepherd/issues/185)
- Maintainer/transfer [\#183](https://github.com/shipshapecode/shepherd/issues/183)
- cannot get node\_modules/tether-shepherd/dist/js/shepherd.min.js  [\#173](https://github.com/shipshapecode/shepherd/issues/173)
- ES6 import from NPM failed. [\#171](https://github.com/shipshapecode/shepherd/issues/171)
- Display Shepherd only during first visit [\#164](https://github.com/shipshapecode/shepherd/issues/164)
- Tether EOL implications [\#163](https://github.com/shipshapecode/shepherd/issues/163)
- Get the AttachTo object [\#150](https://github.com/shipshapecode/shepherd/issues/150)
- Arrow problem [\#145](https://github.com/shipshapecode/shepherd/issues/145)
- `attachment: together` does not work as expected if attachment width greater than target width [\#142](https://github.com/shipshapecode/shepherd/issues/142)
- shepherd-step not placed in proper position [\#130](https://github.com/shipshapecode/shepherd/issues/130)
- attachTo is not working when passing a string [\#122](https://github.com/shipshapecode/shepherd/issues/122)
- Triggering click of an page element on tour step "show" [\#119](https://github.com/shipshapecode/shepherd/issues/119)
- Inherit animation styles from Drop [\#84](https://github.com/shipshapecode/shepherd/issues/84)
- Shepherd might need jQuery... [\#79](https://github.com/shipshapecode/shepherd/issues/79)
- Not accessibility friendly [\#26](https://github.com/shipshapecode/shepherd/issues/26)

**Merged pull requests:**

- RM Hubs Copyright [\#188](https://github.com/shipshapecode/shepherd/pull/188) ([FranDias](https://github.com/FranDias))
- Link correct demo site [\#186](https://github.com/shipshapecode/shepherd/pull/186) ([drucci](https://github.com/drucci))
- Add Repo to package.json [\#149](https://github.com/shipshapecode/shepherd/pull/149) ([bm2u](https://github.com/bm2u))

## v1.7.0
- Fixes bug where `buttons: false` resulted in the default Next button instead of showing the desired result of no buttons.

## v1.6.0 & v1.6.2
- Patches issue where Tether anchor reference was being cached instead of reset when step is shown.

## v1.5.2
- Adds functionality to pass an object `{element: el, on: tetherPositionString}` to tour step `attachTo` parameter.

## v1.5.1
- Exposes `scrollTo` option in Eager

## v1.5.0
- Positioning string parse improvements with regex
- Installation support for dynamically rendered pages in Eager
- Live updates for eager / creation of `tour.removeStep`

## v1.2.2
- Moves `Tether.js` out of `bower_components` and into `dist` for supoort in Eager

## v1.2.1
- Exposes tour object on eager install

## v1.2.0
- Adds `showOn` for conditionally showing tour steps

## v1.1.4
- Eager - Install helper now checks for the presence of first attach node before starting

## v1.1.2 & v1.1.3
- Fix stacking event listeners

## v1.1.1
- Pointer event none for arrows

## v1.1.0
- Update `Tether` to version 1
- Bump all dependencies

## v1.0.0
- Add proper UMD to `Shepherd`
- Convert from `Coffeescript` to `ES6 (Babel)`
- Fix `*.json` files to include `main`
- Remove bundled versions
- Restructure directory layout
- Update `gulp` builds


================================================
FILE: CONTRIBUTING.md
================================================
# Contributing Guide

You will need:

- [pnpm](https://pnpm.io/)

## Getting started

1. Fork the project
2. Clone your forked project by running `git clone git@github.com:{
YOUR_USERNAME }/shepherd.git`
3. Run `pnpm i` to install node modules
4. Test that you can build the source by running `pnpm build` and ensure the `dist` directory appears.

## Writing code!

We use `rollup` to facilitate things like transpilation, minification, etc. so
you can focus on writing relevant code. If there is a fix or feature you would like
to contribute, we ask that you take the following steps:

1. Most of the _editable_ code lives in the `src` directory while built code
   will end up in the `dist` directory upon running `pnpm build`.

2. The demo app is served out of the `landing` directory. Running `pnpm start` will open it in your browser and initiate a live-reloading session as you make changes.

## Opening Pull Requests

1. Please Provide a thoughtful commit message and push your changes to your fork using
   `git push origin main` (assuming your forked project is using `origin` for
   the remote name and you are on the `main` branch).

2. Open a Pull Request on GitHub with a description of your changes.

## Testing

All PRs that change code functionality are required to have accompanying tests.

### Acceptance Tests

Acceptance tests are run using [`cypress`](https://github.com/cypress-io/cypress). A number of different testing configurations can be found in [`package.json`](/package.json), but you can simply run `pnpm test:cy:watch` to build your latest changes and begin running the tests inside a Chrome browser instance.

⚠️ The acceptance tests are set up to run on `localhost` port `9002`. If you'd like to change this port, make sure to change the `baseUrl` option inside of [`cypress.json`](/cypress.json), and change any references to port `9002` in [`package.json`](/package.json) accordingly.


================================================
FILE: LICENSE.md
================================================
# Shepherd.js License

Shepherd.js is dual-licensed under **AGPL-3.0** (for open source and non-commercial use) and a **Commercial License** (for commercial use).

---
 🆓 Free Use - AGPL-3.0 License
You may use Shepherd.js **FREE OF CHARGE** under the AGPL-3.0 license if you are:
 ✅ Open Source Projects
- Your project is open source and licensed under an AGPL-compatible license (GPL, AGPL, etc.)
- Your complete source code is publicly available
 ✅ Personal & Non-Commercial Use
- Personal projects, portfolios, and hobby websites
- Educational purposes (students, teachers, coursework)
- Academic research projects
 ✅ Evaluation & Testing
- Evaluating Shepherd.js for up to 30 days
- Development, testing, and staging environments during evaluation
- Proof-of-concept and demo projects
**Important:** If you use Shepherd.js under AGPL-3.0, you must:
- Make your complete source code available if you distribute or provide your software over a network
- License your code under AGPL-3.0 or a compatible license
- Comply with all AGPL-3.0 terms (see full license text below)
---
 💳 Commercial License Required
You **must purchase a commercial license** at [shepherdjs.dev/pricing](https://shepherdjs.dev/pricing) if:
 ❌ Commercial Products & Services
- You're building a commercial product, application, SaaS, or website that generates revenue
- Your company generates revenue (even if the specific project using Shepherd.js does not)
- You're using Shepherd.js in any customer-facing commercial application
 ❌ Closed-Source Use
- You cannot or don't want to open-source your code under AGPL-3.0
- You want to keep your source code proprietary
- You want to avoid AGPL's source code disclosure requirements
 ❌ White-Label, Resale, or OEM Use
- You're embedding Shepherd.js in a product you sell or distribute
- You're offering Shepherd.js as part of a commercial service or hosting
- You're using Shepherd.js in a product sold to other businesses
 ❌ Internal Business Tools
- You're using Shepherd.js for internal tools, dashboards, or admin panels in a revenue-generating company
- Even if the tool is not customer-facing, commercial licenses are required for for-profit companies
**Why Commercial License?**
- ✅ No AGPL obligations - keep your code proprietary
- ✅ Legal protection and indemnification
- ✅ Priority support and updates
- ✅ Lifetime license with no recurring fees
[**Purchase Commercial License →**](https://shepherdjs.dev/pricing)
---
 ❓ Still Not Sure?
If you're unsure whether you need a commercial license:
- **Contact us:** [ahoy@shipshape.io](mailto:ahoy@shipshape.io)
- **View pricing:** [shepherdjs.dev/pricing](https://shepherdjs.dev/pricing)
**When in doubt:** If your organization generates revenue, you likely need a commercial license.
---

### GNU AFFERO GENERAL PUBLIC LICENSE

Version 3, 19 November 2007

Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license
document, but changing it is not allowed.

### Preamble

The GNU Affero General Public License is a free, copyleft license for software
and other kinds of works, specifically designed to ensure cooperation with the
community in the case of network server software.

The licenses for most software and other practical works are designed to take
away your freedom to share and change the works. By contrast, our General Public
Licenses are intended to guarantee your freedom to share and change all versions
of a program--to make sure it remains free software for all its users.

When we speak of free software, we are referring to freedom, not price. Our
General Public Licenses are designed to make sure that you have the freedom to
distribute copies of free software (and charge for them if you wish), that you
receive source code or can get it if you want it, that you can change the
software or use pieces of it in new free programs, and that you know you can do
these things.

Developers that use our General Public Licenses protect your rights with two
steps: (1) assert copyright on the software, and (2) offer you this License
which gives you legal permission to copy, distribute and/or modify the software.

A secondary benefit of defending all users' freedom is that improvements made in
alternate versions of the program, if they receive widespread use, become
available for other developers to incorporate. Many developers of free software
are heartened and encouraged by the resulting cooperation. However, in the case
of software used on network servers, this result may fail to come about. The GNU
General Public License permits making a modified version and letting the public
access it on a server without ever releasing its source code to the public.

The GNU Affero General Public License is designed specifically to ensure that,
in such cases, the modified source code becomes available to the community. It
requires the operator of a network server to provide the source code of the
modified version running there to the users of that server. Therefore, public
use of a modified version, on a publicly accessible server, gives the public
access to the source code of the modified version.

An older license, called the Affero General Public License and published by
Affero, was designed to accomplish similar goals. This is a different license,
not a version of the Affero GPL, but Affero has released a new version of the
Affero GPL which permits relicensing under this license.

The precise terms and conditions for copying, distribution and modification
follow.

### TERMS AND CONDITIONS

#### 0. Definitions.

"This License" refers to version 3 of the GNU Affero General Public License.

"Copyright" also means copyright-like laws that apply to other kinds of works,
such as semiconductor masks.

"The Program" refers to any copyrightable work licensed under this License. Each
licensee is addressed as "you". "Licensees" and "recipients" may be individuals
or organizations.

To "modify" a work means to copy from or adapt all or part of the work in a
fashion requiring copyright permission, other than the making of an exact copy.
The resulting work is called a "modified version" of the earlier work or a work
"based on" the earlier work.

A "covered work" means either the unmodified Program or a work based on the
Program.

To "propagate" a work means to do anything with it that, without permission,
would make you directly or secondarily liable for infringement under applicable
copyright law, except executing it on a computer or modifying a private copy.
Propagation includes copying, distribution (with or without modification),
making available to the public, and in some countries other activities as well.

To "convey" a work means any kind of propagation that enables other parties to
make or receive copies. Mere interaction with a user through a computer network,
with no transfer of a copy, is not conveying.

An interactive user interface displays "Appropriate Legal Notices" to the extent
that it includes a convenient and prominently visible feature that (1) displays
an appropriate copyright notice, and (2) tells the user that there is no
warranty for the work (except to the extent that warranties are provided), that
licensees may convey the work under this License, and how to view a copy of this
License. If the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

#### 1. Source Code.

The "source code" for a work means the preferred form of the work for making
modifications to it. "Object code" means any non-source form of a work.

A "Standard Interface" means an interface that either is an official standard
defined by a recognized standards body, or, in the case of interfaces specified
for a particular programming language, one that is widely used among developers
working in that language.

The "System Libraries" of an executable work include anything, other than the
work as a whole, that (a) is included in the normal form of packaging a Major
Component, but which is not part of that Major Component, and (b) serves only to
enable use of the work with that Major Component, or to implement a Standard
Interface for which an implementation is available to the public in source code
form. A "Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system (if any) on
which the executable work runs, or a compiler used to produce the work, or an
object code interpreter used to run it.

The "Corresponding Source" for a work in object code form means all the source
code needed to generate, install, and (for an executable work) run the object
code and to modify the work, including scripts to control those activities.
However, it does not include the work's System Libraries, or general-purpose
tools or generally available free programs which are used unmodified in
performing those activities but which are not part of the work. For example,
Corresponding Source includes interface definition files associated with source
files for the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require, such as by
intimate data communication or control flow between those subprograms and other
parts of the work.

The Corresponding Source need not include anything that users can regenerate
automatically from other parts of the Corresponding Source.

The Corresponding Source for a work in source code form is that same work.

#### 2. Basic Permissions.

All rights granted under this License are granted for the term of copyright on
the Program, and are irrevocable provided the stated conditions are met. This
License explicitly affirms your unlimited permission to run the unmodified
Program. The output from running a covered work is covered by this License only
if the output, given its content, constitutes a covered work. This License
acknowledges your rights of fair use or other equivalent, as provided by
copyright law.

You may make, run and propagate covered works that you do not convey, without
conditions so long as your license otherwise remains in force. You may convey
covered works to others for the sole purpose of having them make modifications
exclusively for you, or provide you with facilities for running those works,
provided that you comply with the terms of this License in conveying all
material for which you do not control copyright. Those thus making or running
the covered works for you must do so exclusively on your behalf, under your
direction and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under the conditions
stated below. Sublicensing is not allowed; section 10 makes it unnecessary.

#### 3. Protecting Users' Legal Rights From Anti-Circumvention Law.

No covered work shall be deemed part of an effective technological measure under
any applicable law fulfilling obligations under article 11 of the WIPO copyright
treaty adopted on 20 December 1996, or similar laws prohibiting or restricting
circumvention of such measures.

When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention is
effected by exercising rights under this License with respect to the covered
work, and you disclaim any intention to limit operation or modification of the
work as a means of enforcing, against the work's users, your or third parties'
legal rights to forbid circumvention of technological measures.

#### 4. Conveying Verbatim Copies.

You may convey verbatim copies of the Program's source code as you receive it,
in any medium, provided that you conspicuously and appropriately publish on each
copy an appropriate copyright notice; keep intact all notices stating that this
License and any non-permissive terms added in accord with section 7 apply to the
code; keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you convey, and you may
offer support or warranty protection for a fee.

#### 5. Conveying Modified Source Versions.

You may convey a work based on the Program, or the modifications to produce it
from the Program, in the form of source code under the terms of section 4,
provided that you also meet all of these conditions:

- a) The work must carry prominent notices stating that you modified it, and
  giving a relevant date.
- b) The work must carry prominent notices stating that it is released under
  this License and any conditions added under section 7. This requirement
  modifies the requirement in section 4 to "keep intact all notices".
- c) You must license the entire work, as a whole, under this License to anyone
  who comes into possession of a copy. This License will therefore apply, along
  with any applicable section 7 additional terms, to the whole of the work, and
  all its parts, regardless of how they are packaged. This License gives no
  permission to license the work in any other way, but it does not invalidate
  such permission if you have separately received it.
- d) If the work has interactive user interfaces, each must display Appropriate
  Legal Notices; however, if the Program has interactive interfaces that do not
  display Appropriate Legal Notices, your work need not make them do so.

A compilation of a covered work with other separate and independent works, which
are not by their nature extensions of the covered work, and which are not
combined with it such as to form a larger program, in or on a volume of a
storage or distribution medium, is called an "aggregate" if the compilation and
its resulting copyright are not used to limit the access or legal rights of the
compilation's users beyond what the individual works permit. Inclusion of a
covered work in an aggregate does not cause this License to apply to the other
parts of the aggregate.

#### 6. Conveying Non-Source Forms.

You may convey a covered work in object code form under the terms of sections 4
and 5, provided that you also convey the machine-readable Corresponding Source
under the terms of this License, in one of these ways:

- a) Convey the object code in, or embodied in, a physical product (including a
  physical distribution medium), accompanied by the Corresponding Source fixed
  on a durable physical medium customarily used for software interchange.
- b) Convey the object code in, or embodied in, a physical product (including a
  physical distribution medium), accompanied by a written offer, valid for at
  least three years and valid for as long as you offer spare parts or customer
  support for that product model, to give anyone who possesses the object code
  either (1) a copy of the Corresponding Source for all the software in the
  product that is covered by this License, on a durable physical medium
  customarily used for software interchange, for a price no more than your
  reasonable cost of physically performing this conveying of source, or (2)
  access to copy the Corresponding Source from a network server at no charge.
- c) Convey individual copies of the object code with a copy of the written
  offer to provide the Corresponding Source. This alternative is allowed only
  occasionally and noncommercially, and only if you received the object code
  with such an offer, in accord with subsection 6b.
- d) Convey the object code by offering access from a designated place (gratis
  or for a charge), and offer equivalent access to the Corresponding Source in
  the same way through the same place at no further charge. You need not require
  recipients to copy the Corresponding Source along with the object code. If the
  place to copy the object code is a network server, the Corresponding Source
  may be on a different server (operated by you or a third party) that supports
  equivalent copying facilities, provided you maintain clear directions next to
  the object code saying where to find the Corresponding Source. Regardless of
  what server hosts the Corresponding Source, you remain obligated to ensure
  that it is available for as long as needed to satisfy these requirements.
- e) Convey the object code using peer-to-peer transmission, provided you inform
  other peers where the object code and Corresponding Source of the work are
  being offered to the general public at no charge under subsection 6d.

A separable portion of the object code, whose source code is excluded from the
Corresponding Source as a System Library, need not be included in conveying the
object code work.

A "User Product" is either (1) a "consumer product", which means any tangible
personal property which is normally used for personal, family, or household
purposes, or (2) anything designed or sold for incorporation into a dwelling. In
determining whether a product is a consumer product, doubtful cases shall be
resolved in favor of coverage. For a particular product received by a particular
user, "normally used" refers to a typical or common use of that class of
product, regardless of the status of the particular user or of the way in which
the particular user actually uses, or expects or is expected to use, the
product. A product is a consumer product regardless of whether the product has
substantial commercial, industrial or non-consumer uses, unless such uses
represent the only significant mode of use of the product.

"Installation Information" for a User Product means any methods, procedures,
authorization keys, or other information required to install and execute
modified versions of a covered work in that User Product from a modified version
of its Corresponding Source. The information must suffice to ensure that the
continued functioning of the modified object code is in no case prevented or
interfered with solely because modification has been made.

If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as part of a
transaction in which the right of possession and use of the User Product is
transferred to the recipient in perpetuity or for a fixed term (regardless of
how the transaction is characterized), the Corresponding Source conveyed under
this section must be accompanied by the Installation Information. But this
requirement does not apply if neither you nor any third party retains the
ability to install modified object code on the User Product (for example, the
work has been installed in ROM).

The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates for a
work that has been modified or installed by the recipient, or for the User
Product in which it has been modified or installed. Access to a network may be
denied when the modification itself materially and adversely affects the
operation of the network or violates the rules and protocols for communication
across the network.

Corresponding Source conveyed, and Installation Information provided, in accord
with this section must be in a format that is publicly documented (and with an
implementation available to the public in source code form), and must require no
special password or key for unpacking, reading or copying.

#### 7. Additional Terms.

"Additional permissions" are terms that supplement the terms of this License by
making exceptions from one or more of its conditions. Additional permissions
that are applicable to the entire Program shall be treated as though they were
included in this License, to the extent that they are valid under applicable
law. If additional permissions apply only to part of the Program, that part may
be used separately under those permissions, but the entire Program remains
governed by this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option remove any
additional permissions from that copy, or from any part of it. (Additional
permissions may be written to require their own removal in certain cases when
you modify the work.) You may place additional permissions on material, added by
you to a covered work, for which you have or can give appropriate copyright
permission.

Notwithstanding any other provision of this License, for material you add to a
covered work, you may (if authorized by the copyright holders of that material)
supplement the terms of this License with terms:

- a) Disclaiming warranty or limiting liability differently from the terms of
  sections 15 and 16 of this License; or
- b) Requiring preservation of specified reasonable legal notices or author
  attributions in that material or in the Appropriate Legal Notices displayed by
  works containing it; or
- c) Prohibiting misrepresentation of the origin of that material, or requiring
  that modified versions of such material be marked in reasonable ways as
  different from the original version; or
- d) Limiting the use for publicity purposes of names of licensors or authors of
  the material; or
- e) Declining to grant rights under trademark law for use of some trade names,
  trademarks, or service marks; or
- f) Requiring indemnification of licensors and authors of that material by
  anyone who conveys the material (or modified versions of it) with contractual
  assumptions of liability to the recipient, for any liability that these
  contractual assumptions directly impose on those licensors and authors.

All other non-permissive additional terms are considered "further restrictions"
within the meaning of section 10. If the Program as you received it, or any part
of it, contains a notice stating that it is governed by this License along with
a term that is a further restriction, you may remove that term. If a license
document contains a further restriction but permits relicensing or conveying
under this License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does not survive
such relicensing or conveying.

If you add terms to a covered work in accord with this section, you must place,
in the relevant source files, a statement of the additional terms that apply to
those files, or a notice indicating where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the form of a
separately written license, or stated as exceptions; the above requirements
apply either way.

#### 8. Termination.

You may not propagate or modify a covered work except as expressly provided
under this License. Any attempt otherwise to propagate or modify it is void, and
will automatically terminate your rights under this License (including any
patent licenses granted under the third paragraph of section 11).

However, if you cease all violation of this License, then your license from a
particular copyright holder is reinstated (a) provisionally, unless and until
the copyright holder explicitly and finally terminates your license, and (b)
permanently, if the copyright holder fails to notify you of the violation by
some reasonable means prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is reinstated
permanently if the copyright holder notifies you of the violation by some
reasonable means, this is the first time you have received notice of violation
of this License (for any work) from that copyright holder, and you cure the
violation prior to 30 days after your receipt of the notice.

Termination of your rights under this section does not terminate the licenses of
parties who have received copies or rights from you under this License. If your
rights have been terminated and not permanently reinstated, you do not qualify
to receive new licenses for the same material under section 10.

#### 9. Acceptance Not Required for Having Copies.

You are not required to accept this License in order to receive or run a copy of
the Program. Ancillary propagation of a covered work occurring solely as a
consequence of using peer-to-peer transmission to receive a copy likewise does
not require acceptance. However, nothing other than this License grants you
permission to propagate or modify any covered work. These actions infringe
copyright if you do not accept this License. Therefore, by modifying or
propagating a covered work, you indicate your acceptance of this License to do
so.

#### 10. Automatic Licensing of Downstream Recipients.

Each time you convey a covered work, the recipient automatically receives a
license from the original licensors, to run, modify and propagate that work,
subject to this License. You are not responsible for enforcing compliance by
third parties with this License.

An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered work results
from an entity transaction, each party to that transaction who receives a copy
of the work also receives whatever licenses to the work the party's predecessor
in interest had or could give under the previous paragraph, plus a right to
possession of the Corresponding Source of the work from the predecessor in
interest, if the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the rights
granted or affirmed under this License. For example, you may not impose a
license fee, royalty, or other charge for exercise of rights granted under this
License, and you may not initiate litigation (including a cross-claim or
counterclaim in a lawsuit) alleging that any patent claim is infringed by
making, using, selling, offering for sale, or importing the Program or any
portion of it.

#### 11. Patents.

A "contributor" is a copyright holder who authorizes use under this License of
the Program or a work on which the Program is based. The work thus licensed is
called the contributor's "contributor version".

A contributor's "essential patent claims" are all patent claims owned or
controlled by the contributor, whether already acquired or hereafter acquired,
that would be infringed by some manner, permitted by this License, of making,
using, or selling its contributor version, but do not include claims that would
be infringed only as a consequence of further modification of the contributor
version. For purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free patent
license under the contributor's essential patent claims, to make, use, sell,
offer for sale, import and otherwise run, modify and propagate the contents of
its contributor version.

In the following three paragraphs, a "patent license" is any express agreement
or commitment, however denominated, not to enforce a patent (such as an express
permission to practice a patent or covenant not to sue for patent infringement).
To "grant" such a patent license to a party means to make such an agreement or
commitment not to enforce a patent against the party.

If you convey a covered work, knowingly relying on a patent license, and the
Corresponding Source of the work is not available for anyone to copy, free of
charge and under the terms of this License, through a publicly available network
server or other readily accessible means, then you must either (1) cause the
Corresponding Source to be so available, or (2) arrange to deprive yourself of
the benefit of the patent license for this particular work, or (3) arrange, in a
manner consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have actual
knowledge that, but for the patent license, your conveying the covered work in a
country, or your recipient's use of the covered work in a country, would
infringe one or more identifiable patents in that country that you have reason
to believe are valid.

If, pursuant to or in connection with a single transaction or arrangement, you
convey, or propagate by procuring conveyance of, a covered work, and grant a
patent license to some of the parties receiving the covered work authorizing
them to use, propagate, modify or convey a specific copy of the covered work,
then the patent license you grant is automatically extended to all recipients of
the covered work and works based on it.

A patent license is "discriminatory" if it does not include within the scope of
its coverage, prohibits the exercise of, or is conditioned on the non-exercise
of one or more of the rights that are specifically granted under this License.
You may not convey a covered work if you are a party to an arrangement with a
third party that is in the business of distributing software, under which you
make payment to the third party based on the extent of your activity of
conveying the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory patent
license (a) in connection with copies of the covered work conveyed by you (or
copies made from those copies), or (b) primarily for and in connection with
specific products or compilations that contain the covered work, unless you
entered into that arrangement, or that patent license was granted, prior to 28
March 2007.

Nothing in this License shall be construed as excluding or limiting any implied
license or other defenses to infringement that may otherwise be available to you
under applicable patent law.

#### 12. No Surrender of Others' Freedom.

If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not excuse
you from the conditions of this License. If you cannot convey a covered work so
as to satisfy simultaneously your obligations under this License and any other
pertinent obligations, then as a consequence you may not convey it at all. For
example, if you agree to terms that obligate you to collect a royalty for
further conveying from those to whom you convey the Program, the only way you
could satisfy both those terms and this License would be to refrain entirely
from conveying the Program.

#### 13. Remote Network Interaction; Use with the GNU General Public License.

Notwithstanding any other provision of this License, if you modify the Program,
your modified version must prominently offer all users interacting with it
remotely through a computer network (if your version supports such interaction)
an opportunity to receive the Corresponding Source of your version by providing
access to the Corresponding Source from a network server at no charge, through
some standard or customary means of facilitating copying of software. This
Corresponding Source shall include the Corresponding Source for any work covered
by version 3 of the GNU General Public License that is incorporated pursuant to
the following paragraph.

Notwithstanding any other provision of this License, you have permission to link
or combine any covered work with a work licensed under version 3 of the GNU
General Public License into a single combined work, and to convey the resulting
work. The terms of this License will continue to apply to the part which is the
covered work, but the work with which it is combined will remain governed by
version 3 of the GNU General Public License.

#### 14. Revised Versions of this License.

The Free Software Foundation may publish revised and/or new versions of the GNU
Affero General Public License from time to time. Such new versions will be
similar in spirit to the present version, but may differ in detail to address
new problems or concerns.

Each version is given a distinguishing version number. If the Program specifies
that a certain numbered version of the GNU Affero General Public License "or any
later version" applies to it, you have the option of following the terms and
conditions either of that numbered version or of any later version published by
the Free Software Foundation. If the Program does not specify a version number
of the GNU Affero General Public License, you may choose any version ever
published by the Free Software Foundation.

If the Program specifies that a proxy can decide which future versions of the
GNU Affero General Public License can be used, that proxy's public statement of
acceptance of a version permanently authorizes you to choose that version for
the Program.

Later license versions may give you additional or different permissions.
However, no additional obligations are imposed on any author or copyright holder
as a result of your choosing to follow a later version.

#### 15. Disclaimer of Warranty.

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE
QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

#### 16. Limitation of Liability.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY
COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS
PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE
THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE
PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY
HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

#### 17. Interpretation of Sections 15 and 16.

If the disclaimer of warranty and limitation of liability provided above cannot
be given local legal effect according to their terms, reviewing courts shall
apply local law that most closely approximates an absolute waiver of all civil
liability in connection with the Program, unless a warranty or assumption of
liability accompanies a copy of the Program in return for a fee.

END OF TERMS AND CONDITIONS

### How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest possible use
to the public, the best way to achieve this is to make it free software which
everyone can redistribute and change under these terms.

To do so, attach the following notices to the program. It is safest to attach
them to the start of each source file to most effectively state the exclusion of
warranty; and each file should have at least the "copyright" line and a pointer
to where the full notice is found.

        Better introductions for websites and features with a step-by-step guide for your projects.
        Copyright (C) 2012-2021 Afshin Mehrabani

        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU Affero General Public License as
        published by the Free Software Foundation, either version 3 of the
        License, or (at your option) any later version.

        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY; without even the implied warranty of
        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
        GNU Affero General Public License for more details.

        You should have received a copy of the GNU Affero General Public License
        along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

If your software can interact with users remotely through a computer network,
you should also make sure that it provides a way for users to get its source.
For example, if your program is a web application, its interface could display a
"Source" link that leads users to an archive of the code. There are many ways
you could offer source, and different solutions will be better for different
programs; see section 13 for the specific requirements.

You should also get your employer (if you work as a programmer) or school, if
any, to sign a "copyright disclaimer" for the program, if necessary. For more
information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.


================================================
FILE: README.md
================================================
<p align="center">
  <img 
    alt="Shepherd.js Logo"
    src="https://i.imgur.com/cowwtSX.png"/>
</p>
  

[![npm version](https://badge.fury.io/js/shepherd.js.svg)](http://badge.fury.io/js/shepherd.js)
![Download count all time](https://img.shields.io/npm/dt/shepherd.js.svg)
![npm](https://img.shields.io/npm/dm/shepherd.js.svg)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fshipshapecode%2Fshepherd.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%shipshapecode%2Fshepherd?ref=badge_shield)
![npm bundle size](https://img.shields.io/bundlephobia/minzip/shepherd.js.svg)
[![Test](https://github.com/shipshapecode/shepherd/actions/workflows/test.yml/badge.svg)](https://github.com/shipshapecode/shepherd/actions/workflows/test.yml)
[![Maintainability](https://qlty.sh/gh/shipshapecode/projects/shepherd/maintainability.svg)](https://qlty.sh/gh/shipshapecode/projects/shepherd)
[![Code Coverage](https://qlty.sh/gh/shipshapecode/projects/shepherd/coverage.svg)](https://qlty.sh/gh/shipshapecode/projects/shepherd)
[![StackShare](https://img.shields.io/badge/Follow%20on-StackShare-blue.svg?logo=stackshare&style=flat)](https://stackshare.io/shepherd-js)  

[Shepherd](https://shepherdjs.dev/) is an open source, fully featured, digital adoption platform (DAP) and user on-boarding service.

Supported Browsers
----------------------------------------------------------

| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)</br>Safari |
| --------- | --------- | --------- | --------- |
| Edge| last 2 versions| last 2 versions| last 2 versions

# Shepherd

Shepherd makes it simple to create custom user on-boarding tours, trainings and announcements to drive user adoption. 

Shepherd enables you to guide users through a custom tour or journey within your app or website. Highly customizable with minimal styles, Shepherd allows for powerful customization while being easy to use. Various frameworks supported including React, Ember, Angular, Vue.js, ES Modules, or plain JavaScript. 

# Demo
See Shepherd Live on our website by clicking on the image:
<a href="https://shepherdjs.dev">
  <img 
    src="https://shepherdjs.dev/img/demo.png" 
    alt="Guide your users through a tour of your app" 
    style="height: auto; max-width: 800px; width: 100%;"/>
</a>

# Using Shepherd

### Shepherd Open Source Library

The Shepherd Standalone Library has been open source since the very beginning. Check out our tutorials here:

#### [React Shepherd Wrapper](packages/react)
#### [Angular Shepherd Wrapper](https://github.com/shipshapecode/angular-shepherd)
#### [Vue Shepherd Wrapper](https://github.com/shipshapecode/vue-shepherd)
#### [Ember Shepherd Wrapper](https://github.com/RobbieTheWagner/ember-shepherd)


# White Glove Services

If you have an idea or project in mind and would like to engage our team to build a custom tour, training or on-boarding experience, [get in touch](mailto:ahoy@shipshape.io)! 


## Resources

- [Website](https://shepherdjs.dev/)
- [Documentation](https://docs.shepherdjs.dev/)
- [Demo](https://shepherdjs.dev/)
- [Discord](https://discord.gg/EGcDW5NSud)


## Contributing

We encourage contributions of all kinds. If you would like to contribute in some way, please review our [guidelines for contributing](CONTRIBUTING.md).
Our release process is mostly automated. For more details, see [RELEASE.md](RELEASE.md).


## Projects Already Using Shepherd

### Rails gems

### [abraham](https://github.com/actmd/abraham)

Rails engine that generates and tracks Shepherd tours within an application

### Websites and Apps

### [SimplePlanner](https://simpleplanner.io)

[SimplePlanner](https://simpleplanner.io) uses Shepherd to help new users get familiar with its collaborative scheduling approach. 
You do need to sign up via OAuth or email to see the scheduling tour. 
Check out the [Envato Tuts+ Startup Series on its codebase](https://code.tutsplus.com/series/building-your-startup-with-php--cms-742) which describes how Simple Planner was built.

### [LogSeq](https://logseq.com/) 

[LogSeq](https://logseq.com/) uses Shepherd to guide users through initial setup steps.

### [Snapsure](https://snapsure.app)

[Snapsure](https://snapsure.app) uses Shepherd to help photographers learn how to set up alerts for their desired picture-perfect weather conditions.

### [Drupal](https://www.drupal.org/docs/8/core/modules/tour/overview)

The [Drupal](https://www.drupal.org/docs/8/core/modules/tour/overview) CMS uses Shepherd to offer tours of it's core modules, and allows developers to add Tours to their custom and contributed modules.

### [Budibase Shepherd Tour Plugin](https://github.com/JayP718/tour_shepherd_bb_plugin)

[Budibase](https://budibase.com/) is an open source application which allows you develop low code applications rapidly and efficiently.This [Budibase](https://budibase.com/) Shepherd tour plugin allows you to create interative walkthroughs for your application.


### Your Project Here

If you have a cool open-source library built on Shepherd, PR this doc.


## License

Shepherd.js is dual-licensed under AGPL-3.0 and a Commercial License.

- **Free for open source and non-commercial use** under AGPL-3.0
- **Commercial license required** for commercial products and revenue-generating companies

See [LICENSE.md](LICENSE.md) for complete details or visit [shepherdjs.dev/pricing](https://shepherdjs.dev/pricing) to purchase a commercial license.

[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fshipshapecode%2Fshepherd.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fshipshapecode%2Fshepherd?ref=badge_large)


================================================
FILE: RELEASE.md
================================================
# Release Process

Releases in this repo are mostly automated using [release-plan](https://github.com/embroider-build/release-plan/). Once you label all your PRs correctly (see below) you will have an automatically generated PR that updates your CHANGELOG.md file and a `.release-plan.json` that is used to prepare the release once the PR is merged.

## Preparation

Since the majority of the actual release process is automated, the remaining tasks before releasing are:

- correctly labeling **all** pull requests that have been merged since the last release
- updating pull request titles so they make sense to our users

Some great information on why this is important can be found at [keepachangelog.com](https://keepachangelog.com/en/1.1.0/), but the overall
guiding principle here is that changelogs are for humans, not machines.

When reviewing merged PR's the labels to be used are:

- breaking - Used when the PR is considered a breaking change.
- enhancement - Used when the PR adds a new feature or enhancement.
- bug - Used when the PR fixes a bug included in a previous release.
- documentation - Used when the PR adds or updates documentation.
- internal - Internal chang
Download .txt
gitextract_xaiikd27/

├── .browserslistrc
├── .eslintignore
├── .eslintrc.js
├── .github/
│   ├── CODEOWNERS
│   ├── dependabot.yml
│   ├── stale.yml
│   └── workflows/
│       ├── plan-release.yml
│       ├── publish.yml
│       └── test.yml
├── .gitignore
├── .nojekyll
├── .prettierrc.js
├── .release-plan.json
├── .tool-versions
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md
├── RELEASE.md
├── docs-src/
│   ├── .dockerignore
│   ├── .gitignore
│   ├── .vscode/
│   │   ├── extensions.json
│   │   └── launch.json
│   ├── Dockerfile
│   ├── README.md
│   ├── astro.config.mjs
│   ├── fly.toml
│   ├── package.json
│   ├── src/
│   │   ├── components/
│   │   │   ├── HeadWithPosthog.astro
│   │   │   └── Posthog.astro
│   │   ├── content/
│   │   │   ├── config.ts
│   │   │   └── docs/
│   │   │       ├── api/
│   │   │       │   └── README.md
│   │   │       ├── guides/
│   │   │       │   ├── analytics.mdx
│   │   │       │   ├── install.mdx
│   │   │       │   ├── license.mdx
│   │   │       │   ├── styling.md
│   │   │       │   └── usage.md
│   │   │       └── recipes/
│   │   │           ├── cookbook.md
│   │   │           └── react.md
│   │   ├── env.d.ts
│   │   └── pages/
│   │       └── index.astro
│   └── tsconfig.json
├── landing/
│   ├── .gitignore
│   ├── .vscode/
│   │   ├── extensions.json
│   │   └── launch.json
│   ├── README.md
│   ├── astro.config.mjs
│   ├── package.json
│   ├── public/
│   │   ├── CNAME
│   │   └── favicons/
│   │       └── site.webmanifest
│   ├── src/
│   │   ├── components/
│   │   │   ├── ArticleCard.astro
│   │   │   ├── BaseHead.astro
│   │   │   ├── Footer.astro
│   │   │   ├── FormattedDate.astro
│   │   │   ├── GithubButton.astro
│   │   │   ├── Header.astro
│   │   │   ├── HeaderLink.astro
│   │   │   ├── Icon.astro
│   │   │   └── Posthog.astro
│   │   ├── consts.ts
│   │   ├── content/
│   │   │   ├── blog/
│   │   │   │   ├── alpha-launch-pro.md
│   │   │   │   ├── secret-handshakes-hidden-passages.md
│   │   │   │   ├── shepherd-the-product.md
│   │   │   │   └── tale-of-frameworks.md
│   │   │   └── config.ts
│   │   ├── env.d.ts
│   │   ├── layouts/
│   │   │   ├── Base.astro
│   │   │   ├── BlogPost.astro
│   │   │   └── MainPage.astro
│   │   ├── lib/
│   │   │   └── github.ts
│   │   ├── pages/
│   │   │   ├── api/
│   │   │   │   └── checkout.ts
│   │   │   ├── blog/
│   │   │   │   ├── [...slug].astro
│   │   │   │   └── index.astro
│   │   │   ├── index.astro
│   │   │   ├── pricing.astro
│   │   │   └── rss.xml.js
│   │   └── styles/
│   │       ├── fonts.css
│   │       ├── prism.css
│   │       ├── shepherd.css
│   │       └── styles.css
│   └── tsconfig.json
├── package.json
├── packages/
│   └── react/
│       ├── .gitignore
│       ├── CHANGELOG.md
│       ├── README.md
│       ├── package.json
│       ├── src/
│       │   └── index.tsx
│       ├── test/
│       │   ├── index.test.tsx
│       │   └── setup.ts
│       ├── tsconfig.json
│       ├── vite.config.ts
│       └── vitest.config.ts
├── pnpm-workspace.yaml
├── shepherd.js/
│   ├── .attw.json
│   ├── .eslintignore
│   ├── .eslintrc.cjs
│   ├── .gitignore
│   ├── .prettierignore
│   ├── babel.config.cjs
│   ├── cypress/
│   │   └── downloads/
│   │       └── downloads.html
│   ├── dev/
│   │   ├── assets/
│   │   │   └── favicons/
│   │   │       ├── browserconfig.xml
│   │   │       └── manifest.json
│   │   ├── css/
│   │   │   ├── fonts.css
│   │   │   ├── prism.css
│   │   │   └── welcome.css
│   │   ├── index.html
│   │   └── js/
│   │       └── prism.js
│   ├── dummy/
│   │   ├── assets/
│   │   │   └── favicons/
│   │   │       ├── browserconfig.xml
│   │   │       └── manifest.json
│   │   ├── css/
│   │   │   ├── fonts.css
│   │   │   ├── prism.css
│   │   │   └── welcome.css
│   │   ├── index.html
│   │   └── js/
│   │       └── prism.js
│   ├── eslint.config.js
│   ├── package.json
│   ├── rollup.config.mjs
│   ├── src/
│   │   ├── components/
│   │   │   ├── shepherd-button.css
│   │   │   ├── shepherd-button.ts
│   │   │   ├── shepherd-cancel-icon.css
│   │   │   ├── shepherd-cancel-icon.ts
│   │   │   ├── shepherd-content.css
│   │   │   ├── shepherd-content.ts
│   │   │   ├── shepherd-element.css
│   │   │   ├── shepherd-element.ts
│   │   │   ├── shepherd-footer.css
│   │   │   ├── shepherd-footer.ts
│   │   │   ├── shepherd-header.css
│   │   │   ├── shepherd-header.ts
│   │   │   ├── shepherd-modal.css
│   │   │   ├── shepherd-modal.ts
│   │   │   ├── shepherd-text.css
│   │   │   ├── shepherd-text.ts
│   │   │   ├── shepherd-title.css
│   │   │   └── shepherd-title.ts
│   │   ├── evented.ts
│   │   ├── shepherd.ts
│   │   ├── step.ts
│   │   ├── tour.ts
│   │   └── utils/
│   │       ├── auto-bind.ts
│   │       ├── bind.ts
│   │       ├── cleanup.ts
│   │       ├── dom.ts
│   │       ├── floating-ui.ts
│   │       ├── general.ts
│   │       ├── overlay-path.ts
│   │       └── type-check.ts
│   ├── test/
│   │   ├── cypress/
│   │   │   ├── .gitignore
│   │   │   ├── cypress.config.js
│   │   │   ├── dummy/
│   │   │   │   ├── assets/
│   │   │   │   │   └── favicons/
│   │   │   │   │       ├── browserconfig.xml
│   │   │   │   │       └── manifest.json
│   │   │   │   ├── css/
│   │   │   │   │   ├── fonts.css
│   │   │   │   │   ├── prism.css
│   │   │   │   │   └── welcome.css
│   │   │   │   ├── index.html
│   │   │   │   └── js/
│   │   │   │       └── prism.js
│   │   │   ├── examples/
│   │   │   │   ├── css/
│   │   │   │   │   ├── no-css-import.html
│   │   │   │   │   └── with-css-import.html
│   │   │   │   └── destroying-elements.html
│   │   │   ├── integration/
│   │   │   │   ├── a11y.cy.js
│   │   │   │   ├── css.cy.js
│   │   │   │   ├── destroying-elements.cy.js
│   │   │   │   ├── element-targeting.cy.js
│   │   │   │   ├── modal.cy.js
│   │   │   │   └── test.acceptance.cy.js
│   │   │   ├── support/
│   │   │   │   ├── commands.js
│   │   │   │   └── index.js
│   │   │   └── utils/
│   │   │       ├── default-buttons.js
│   │   │       ├── default-steps.js
│   │   │       └── setup-tour.js
│   │   └── unit/
│   │       ├── babel.config.cjs
│   │       ├── components/
│   │       │   ├── shepherd-button.spec.js
│   │       │   ├── shepherd-content.spec.js
│   │       │   ├── shepherd-element.spec.js
│   │       │   ├── shepherd-footer.spec.js
│   │       │   ├── shepherd-header.spec.js
│   │       │   ├── shepherd-modal.spec.js
│   │       │   ├── shepherd-text.spec.js
│   │       │   └── shepherd-title.spec.js
│   │       ├── evented.spec.js
│   │       ├── server.spec.js
│   │       ├── setupTests.js
│   │       ├── step.spec.js
│   │       ├── tour.spec.js
│   │       └── utils/
│   │           ├── bind.spec.js
│   │           ├── cleanup.spec.js
│   │           └── general.spec.js
│   ├── tsconfig.json
│   └── vitest.config.ts
└── stderr.log
Download .txt
SYMBOL INDEX (177 symbols across 39 files)

FILE: landing/src/consts.ts
  constant SITE_TITLE (line 4) | const SITE_TITLE = 'Shepherd — Guide your users through a tour of your a...
  constant SITE_DESCRIPTION (line 5) | const SITE_DESCRIPTION = 'Guide your users through a tour of your app.';

FILE: landing/src/lib/github.ts
  function countStars (line 8) | async function countStars(
  function getFormattedStars (line 28) | async function getFormattedStars(

FILE: landing/src/pages/api/checkout.ts
  constant GET (line 5) | const GET = Checkout({

FILE: landing/src/pages/rss.xml.js
  function GET (line 5) | async function GET(context) {

FILE: packages/react/src/index.tsx
  type ShepherdContextType (line 4) | interface ShepherdContextType {

FILE: shepherd.js/dev/js/prism.js
  function e (line 8) | function e(e){this.defaults=r({},e)}
  function n (line 8) | function n(e){return e.replace(/-(\w)/g,function(e,n){return n.toUpperCa...
  function t (line 8) | function t(e){for(var n=0,t=0;t<e.length;++t)e.charCodeAt(t)=="	".charCo...

FILE: shepherd.js/dummy/js/prism.js
  function e (line 8) | function e(e){this.defaults=r({},e)}
  function n (line 8) | function n(e){return e.replace(/-(\w)/g,function(e,n){return n.toUpperCa...
  function t (line 8) | function t(e){for(var n=0,t=0;t<e.length;++t)e.charCodeAt(t)=="	".charCo...

FILE: shepherd.js/src/components/shepherd-button.ts
  function getConfigOption (line 6) | function getConfigOption(option: unknown, step: Step): unknown {
  function createShepherdButton (line 13) | function createShepherdButton(

FILE: shepherd.js/src/components/shepherd-cancel-icon.ts
  function createShepherdCancelIcon (line 5) | function createShepherdCancelIcon(

FILE: shepherd.js/src/components/shepherd-content.ts
  function createShepherdContent (line 9) | function createShepherdContent(

FILE: shepherd.js/src/components/shepherd-element.ts
  constant KEY_TAB (line 7) | const KEY_TAB = 9;
  constant KEY_ESC (line 8) | const KEY_ESC = 27;
  constant LEFT_ARROW (line 9) | const LEFT_ARROW = 37;
  constant RIGHT_ARROW (line 10) | const RIGHT_ARROW = 39;
  type ShepherdElementOptions (line 12) | interface ShepherdElementOptions {
  type ShepherdElementResult (line 19) | interface ShepherdElementResult {
  function createShepherdElement (line 24) | function createShepherdElement(

FILE: shepherd.js/src/components/shepherd-footer.ts
  function createShepherdFooter (line 6) | function createShepherdFooter(step: Step): HTMLElement {

FILE: shepherd.js/src/components/shepherd-header.ts
  function createShepherdHeader (line 7) | function createShepherdHeader(labelId: string, step: Step): HTMLElement {

FILE: shepherd.js/src/components/shepherd-modal.ts
  type OpeningProperty (line 6) | interface OpeningProperty {
  type ModalRadiusType (line 21) | type ModalRadiusType =
  type ShepherdModalAPI (line 30) | interface ShepherdModalAPI {
  function createShepherdModal (line 48) | function createShepherdModal(container: HTMLElement): ShepherdModalAPI {

FILE: shepherd.js/src/components/shepherd-text.ts
  function createShepherdText (line 6) | function createShepherdText(

FILE: shepherd.js/src/components/shepherd-title.ts
  function createShepherdTitle (line 6) | function createShepherdTitle(

FILE: shepherd.js/src/evented.ts
  type Bindings (line 3) | type Bindings = {
  type AnyHandler (line 8) | type AnyHandler = (...args: any[]) => void;
  class Evented (line 10) | class Evented {
    method on (line 22) | on(event: string, handler: AnyHandler, ctx?: unknown, once = false) {
    method once (line 42) | once(event: string, handler: AnyHandler, ctx?: unknown) {
    method off (line 53) | off(event: string, handler?: AnyHandler) {
    method trigger (line 78) | trigger(event: string, ...args: any[]) {

FILE: shepherd.js/src/step.ts
  type StepText (line 29) | type StepText =
  type StringOrStringFunction (line 35) | type StringOrStringFunction = string | (() => string);
  type StepOptions (line 40) | interface StepOptions {
  type PopperPlacement (line 210) | type PopperPlacement =
  type StepOptionsArrow (line 227) | interface StepOptionsArrow {
  type StepOptionsAttachTo (line 235) | interface StepOptionsAttachTo {
  type StepOptionsAdvanceOn (line 244) | interface StepOptionsAdvanceOn {
  type StepOptionsButton (line 249) | interface StepOptionsButton {
  type StepOptionsButtonEvent (line 316) | interface StepOptionsButtonEvent {
  type StepOptionsCancelIcon (line 320) | interface StepOptionsCancelIcon {
  type StepOptionsWhen (line 355) | interface StepOptionsWhen {
  class Step (line 363) | class Step extends Evented {
    method constructor (line 376) | constructor(tour: Tour, options: StepOptions = {}) {
    method cancel (line 412) | cancel() {
    method complete (line 421) | complete() {
    method destroy (line 430) | destroy() {
    method _teardownElements (line 440) | _teardownElements() {
    method getTour (line 461) | getTour() {
    method hide (line 468) | hide() {
    method _resolveExtraHiglightElements (line 486) | _resolveExtraHiglightElements() {
    method _resolveAttachToOptions (line 495) | _resolveAttachToOptions() {
    method _getResolvedAttachToOptions (line 505) | _getResolvedAttachToOptions() {
    method isOpen (line 517) | isOpen() {
    method show (line 524) | show() {
    method updateStepOptions (line 538) | updateStepOptions(options: StepOptions) {
    method getElement (line 554) | getElement() {
    method getTarget (line 562) | getTarget() {
    method _storeOriginalTabIndex (line 572) | _storeOriginalTabIndex(element: Element): void {
    method _restoreOriginalTabIndexes (line 586) | _restoreOriginalTabIndexes(): void {
    method _createTooltipContent (line 603) | _createTooltipContent() {
    method _scrollTo (line 628) | _scrollTo(scrollToOptions: boolean | ScrollIntoViewOptions) {
    method _getClassOptions (line 646) | _getClassOptions(stepOptions: StepOptions) {
    method _setOptions (line 667) | _setOptions(options: StepOptions = {}) {
    method _setupElements (line 701) | _setupElements() {
    method _show (line 722) | _show() {
    method _styleTargetElementForStep (line 777) | _styleTargetElementForStep(step: Step) {
    method _updateStepTargetOnHide (line 809) | _updateStepTargetOnHide() {

FILE: shepherd.js/src/tour.ts
  type EventOptions (line 17) | interface EventOptions {
  type TourConfirmCancel (line 23) | type TourConfirmCancel =
  type TourOptions (line 32) | interface TourOptions {
  class ShepherdBase (line 92) | class ShepherdBase extends Evented {
    method constructor (line 97) | constructor() {
  class Tour (line 108) | class Tour extends Evented {
    method constructor (line 119) | constructor(options: TourOptions = {}) {
    method addStep (line 165) | addStep(options: StepOptions | Step, index?: number) {
    method addSteps (line 187) | addSteps(steps?: Array<StepOptions> | Array<Step>) {
    method back (line 200) | back() {
    method cancel (line 211) | async cancel() {
    method complete (line 235) | complete() {
    method getById (line 244) | getById(id: number | string) {
    method getCurrentStep (line 253) | getCurrentStep() {
    method hide (line 260) | hide() {
    method isActive (line 271) | isActive() {
    method next (line 279) | next() {
    method removeStep (line 293) | removeStep(name: string) {
    method show (line 323) | show(key: number | string = 0, forward = true) {
    method start (line 350) | async start() {
    method _done (line 369) | _done(event: string) {
    method _setupActiveTour (line 402) | _setupActiveTour() {
    method setupModal (line 411) | setupModal() {
    method _skipStep (line 422) | _skipStep(step: Step, forward: boolean) {
    method _updateStateBeforeShow (line 440) | _updateStateBeforeShow() {
    method _setTourID (line 455) | _setTourID(optionsId: string | undefined) {

FILE: shepherd.js/src/utils/auto-bind.ts
  function autoBind (line 8) | function autoBind(self: any) {

FILE: shepherd.js/src/utils/bind.ts
  function _setupAdvanceOnHandler (line 10) | function _setupAdvanceOnHandler(step: Step, selector?: string) {
  function bindAdvance (line 29) | function bindAdvance(step: Step) {

FILE: shepherd.js/src/utils/cleanup.ts
  function cleanupSteps (line 8) | function cleanupSteps(tour: Tour) {

FILE: shepherd.js/src/utils/dom.ts
  type Attrs (line 1) | type Attrs = Record<string, unknown>;
  type Child (line 2) | type Child = Node | string | null | undefined | false;
  function h (line 9) | function h(
  function svgEl (line 23) | function svgEl(
  function applyAttrs (line 34) | function applyAttrs(el: Element, attrs?: Attrs | null) {
  function appendChildren (line 50) | function appendChildren(el: Element, children: Child[]) {

FILE: shepherd.js/src/utils/floating-ui.ts
  function setupTooltip (line 24) | function setupTooltip(step: Step): ComputePositionConfig {
  function mergeTooltipConfig (line 64) | function mergeTooltipConfig(
  function destroyTooltip (line 81) | function destroyTooltip(step: Step) {
  function setPosition (line 89) | function setPosition(
  function floatingUIposition (line 115) | function floatingUIposition(step: Step, shouldCenter: boolean) {
  function placeArrow (line 154) | function placeArrow(el: HTMLElement, middlewareData: MiddlewareData) {
  function getFloatingUIOptions (line 171) | function getFloatingUIOptions(
  function addArrow (line 233) | function addArrow(step: Step) {

FILE: shepherd.js/src/utils/general.ts
  class StepNoOp (line 9) | class StepNoOp {
    method constructor (line 10) | constructor(_options: StepOptions) {}
  class TourNoOp (line 13) | class TourNoOp {
    method constructor (line 14) | constructor(_tour: Tour, _options: TourOptions) {}
  function normalizePrefix (line 22) | function normalizePrefix(prefix?: string) {
  function parseAttachTo (line 37) | function parseAttachTo(step: Step) {
  function parseExtraHighlights (line 69) | function parseExtraHighlights(step: Step): HTMLElement[] {
  function shouldCenterStep (line 82) | function shouldCenterStep(resolvedAttachToOptions: StepOptionsAttachTo) {
  function uuid (line 96) | function uuid() {

FILE: shepherd.js/src/utils/overlay-path.ts
  type OverlayPathParams (line 1) | interface OverlayPathParams {
  function makeOverlayPath (line 25) | function makeOverlayPath(overlayPaths: OverlayPathParams[]) {

FILE: shepherd.js/src/utils/type-check.ts
  function isElement (line 5) | function isElement<T>(value: T | Element): value is Element {
  function isHTMLElement (line 13) | function isHTMLElement<T>(value: T | HTMLElement): value is HTMLElement {
  function isFunction (line 21) | function isFunction<T>(value: T | Function): value is Function {
  function isString (line 29) | function isString<T>(value: T | string): value is string {
  function isUndefined (line 37) | function isUndefined<T>(value: T | undefined): value is undefined {

FILE: shepherd.js/test/cypress/dummy/js/prism.js
  function e (line 521) | function e(e) {
  function n (line 524) | function n(e) {
  function t (line 529) | function t(e) {

FILE: shepherd.js/test/cypress/integration/a11y.cy.js
  method onLoad (line 10) | onLoad(contentWindow) {

FILE: shepherd.js/test/cypress/integration/destroying-elements.cy.js
  method onLoad (line 10) | onLoad(contentWindow) {

FILE: shepherd.js/test/cypress/integration/element-targeting.cy.js
  method onLoad (line 10) | onLoad(contentWindow) {

FILE: shepherd.js/test/cypress/integration/modal.cy.js
  method onLoad (line 11) | onLoad(contentWindow) {

FILE: shepherd.js/test/cypress/integration/test.acceptance.cy.js
  method onLoad (line 11) | onLoad(contentWindow) {

FILE: shepherd.js/test/unit/components/shepherd-element.spec.js
  function fireKeyDown (line 6) | function fireKeyDown(el, keyCode, opts = {}) {

FILE: shepherd.js/test/unit/components/shepherd-modal.spec.js
  method getBoundingClientRect (line 23) | getBoundingClientRect() {
  method getBoundingClientRect (line 68) | getBoundingClientRect() {
  method getBoundingClientRect (line 95) | getBoundingClientRect() {
  method getBoundingClientRect (line 130) | getBoundingClientRect() {
  method getBoundingClientRect (line 171) | getBoundingClientRect() {
  method getBoundingClientRect (line 198) | getBoundingClientRect() {
  method getBoundingClientRect (line 208) | getBoundingClientRect() {
  method getBoundingClientRect (line 235) | getBoundingClientRect() {
  method getBoundingClientRect (line 245) | getBoundingClientRect() {
  method getBoundingClientRect (line 267) | getBoundingClientRect() {
  method getBoundingClientRect (line 285) | getBoundingClientRect() {
  method getBoundingClientRect (line 307) | getBoundingClientRect() {
  method getBoundingClientRect (line 325) | getBoundingClientRect() {
  method getBoundingClientRect (line 353) | getBoundingClientRect() {
  method getBoundingClientRect (line 364) | getBoundingClientRect() {
  method getBoundingClientRect (line 393) | getBoundingClientRect() {
  method getBoundingClientRect (line 404) | getBoundingClientRect() {
  method getBoundingClientRect (line 414) | getBoundingClientRect() {
  method getBoundingClientRect (line 437) | getBoundingClientRect() {
  method getBoundingClientRect (line 458) | getBoundingClientRect() {
  method frameElement (line 738) | get frameElement() {

FILE: shepherd.js/test/unit/step.spec.js
  constant DEFAULT_STEP_CLASS (line 12) | const DEFAULT_STEP_CLASS = 'shepherd-step-tooltip';
  method show (line 22) | show() {}
  method cancel (line 236) | cancel() {
  method complete (line 256) | complete() {
  method hide (line 287) | hide() {

FILE: shepherd.js/test/unit/tour.spec.js
  constant DEFAULT_STEP_CLASS (line 14) | const DEFAULT_STEP_CLASS = 'shepherd-step-tooltip';
  method show (line 24) | show() {}
  method showOn (line 124) | showOn() {
  method showOn (line 563) | showOn() {

FILE: shepherd.js/test/unit/utils/bind.spec.js
  method next (line 14) | next() {

FILE: shepherd.js/test/unit/utils/general.spec.js
  method element (line 67) | element() {
Condensed preview — 190 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (722K chars).
[
  {
    "path": ".browserslistrc",
    "chars": 127,
    "preview": "# Browsers that we support\n\nlast 2 Chrome versions\nlast 2 Firefox versions\nlast 2 Safari versions\nlast 2 Edge versions\nE"
  },
  {
    "path": ".eslintignore",
    "chars": 98,
    "preview": "/coverage/\n/cypress/dummy/js/prism.js\n/dist/\n/docs/\n/dummy/\n/landing/\n/site/\n/test/cypress/dummy/\n"
  },
  {
    "path": ".eslintrc.js",
    "chars": 1083,
    "preview": "module.exports = {\n  root: true,\n  parserOptions: {\n    ecmaVersion: 'latest',\n    sourceType: 'module'\n  },\n  extends: "
  },
  {
    "path": ".github/CODEOWNERS",
    "chars": 33,
    "preview": "@chuckcarpenter\n@RobbieTheWagner\n"
  },
  {
    "path": ".github/dependabot.yml",
    "chars": 202,
    "preview": "version: 2\nupdates:\n- package-ecosystem: npm\n  directory: \"/\"\n  schedule:\n    interval: daily\n    time: \"10:00\"\n  open-p"
  },
  {
    "path": ".github/stale.yml",
    "chars": 683,
    "preview": "# Number of days of inactivity before an issue becomes stale\ndaysUntilStale: 30\n# Number of days of inactivity before a "
  },
  {
    "path": ".github/workflows/plan-release.yml",
    "chars": 2011,
    "preview": "name: Plan Release\non:\n  workflow_dispatch:\n  push:\n    branches:\n      - main\n      - master\n  pull_request_target: # T"
  },
  {
    "path": ".github/workflows/publish.yml",
    "chars": 1029,
    "preview": "# For every push to the primary branch with .release-plan.json modified,\n# runs release-plan.\n\nname: Publish Stable\n\non:"
  },
  {
    "path": ".github/workflows/test.yml",
    "chars": 1496,
    "preview": "name: CI\n\non:\n  push:\n    branches:\n      - main\n    paths-ignore:\n      - 'app/**'\n  pull_request:\n    paths-ignore:\n  "
  },
  {
    "path": ".gitignore",
    "chars": 571,
    "preview": "# Editors\n/.idea/\n/.vscode/\n\n.eslintcache\n.nyc_output/\ncoverage/\ndist/\nnode_modules/\n\n/.log/\n\n/cypress/\n/docs/\n/site/\n/t"
  },
  {
    "path": ".nojekyll",
    "chars": 0,
    "preview": ""
  },
  {
    "path": ".prettierrc.js",
    "chars": 331,
    "preview": "'use strict';\n\nmodule.exports = {\n  arrowParens: 'always',\n  proseWrap: 'always',\n  trailingComma: 'none',\n  singleQuote"
  },
  {
    "path": ".release-plan.json",
    "chars": 1147,
    "preview": "{\n  \"solution\": {\n    \"react-shepherd\": {\n      \"impact\": \"patch\",\n      \"oldVersion\": \"7.0.3\",\n      \"newVersion\": \"7.0"
  },
  {
    "path": ".tool-versions",
    "chars": 28,
    "preview": "nodejs 22.22.0\npnpm 10.28.2\n"
  },
  {
    "path": "CHANGELOG.md",
    "chars": 142371,
    "preview": "# Changelog\n\n## Release (2026-03-11)\n\n* react-shepherd 7.0.4 (patch)\n* shepherd.js 15.2.2 (patch)\n\n#### :bug: Bug Fix\n* "
  },
  {
    "path": "CONTRIBUTING.md",
    "chars": 1921,
    "preview": "# Contributing Guide\n\nYou will need:\n\n- [pnpm](https://pnpm.io/)\n\n## Getting started\n\n1. Fork the project\n2. Clone your "
  },
  {
    "path": "LICENSE.md",
    "chars": 36916,
    "preview": "# Shepherd.js License\n\nShepherd.js is dual-licensed under **AGPL-3.0** (for open source and non-commercial use) and a **"
  },
  {
    "path": "README.md",
    "chars": 6429,
    "preview": "<p align=\"center\">\n  <img \n    alt=\"Shepherd.js Logo\"\n    src=\"https://i.imgur.com/cowwtSX.png\"/>\n</p>\n  \n\n[![npm versio"
  },
  {
    "path": "RELEASE.md",
    "chars": 1610,
    "preview": "# Release Process\n\nReleases in this repo are mostly automated using [release-plan](https://github.com/embroider-build/re"
  },
  {
    "path": "docs-src/.dockerignore",
    "chars": 229,
    "preview": "# build output\ndist/\n# generated types\n.astro/\n\n# dependencies\nnode_modules/\n\n# logs\nnpm-debug.log*\nyarn-debug.log*\nyarn"
  },
  {
    "path": "docs-src/.gitignore",
    "chars": 274,
    "preview": "# build output\ndist/\n# generated types\n.astro/\n\n# dependencies\nnode_modules/\n\n# generated api docs\nsrc/content/docs/api/"
  },
  {
    "path": "docs-src/.vscode/extensions.json",
    "chars": 87,
    "preview": "{\n  \"recommendations\": [\"astro-build.astro-vscode\"],\n  \"unwantedRecommendations\": []\n}\n"
  },
  {
    "path": "docs-src/.vscode/launch.json",
    "chars": 207,
    "preview": "{\n  \"version\": \"0.2.0\",\n  \"configurations\": [\n    {\n      \"command\": \"./node_modules/.bin/astro dev\",\n      \"name\": \"Dev"
  },
  {
    "path": "docs-src/Dockerfile",
    "chars": 1206,
    "preview": "# syntax = docker/dockerfile:1\n\n# Adjust NODE_VERSION as desired\nARG NODE_VERSION=20.10.0\nFROM node:${NODE_VERSION}-slim"
  },
  {
    "path": "docs-src/README.md",
    "chars": 2373,
    "preview": "# Starlight Starter Kit: Basics\n\n[![Built with Starlight](https://astro.badg.es/v2/built-with-starlight/tiny.svg)](https"
  },
  {
    "path": "docs-src/astro.config.mjs",
    "chars": 2292,
    "preview": "import { defineConfig } from 'astro/config';\nimport starlight from '@astrojs/starlight';\n\nimport starlightTypeDoc, { typ"
  },
  {
    "path": "docs-src/fly.toml",
    "chars": 467,
    "preview": "# fly.toml app configuration file generated for shepherd-docs on 2024-04-23T14:17:39-07:00\n#\n# See https://fly.io/docs/r"
  },
  {
    "path": "docs-src/package.json",
    "chars": 633,
    "preview": "{\n  \"name\": \"shepherd-docs\",\n  \"type\": \"module\",\n  \"version\": \"0.0.6\",\n  \"private\": \"true\",\n  \"scripts\": {\n    \"dev\": \"a"
  },
  {
    "path": "docs-src/src/components/HeadWithPosthog.astro",
    "chars": 224,
    "preview": "---\nimport type { Props } from '@astrojs/starlight/props';\nimport Default from '@astrojs/starlight/components/Head.astro"
  },
  {
    "path": "docs-src/src/components/Posthog.astro",
    "chars": 1878,
    "preview": "<script is:inline>\n  !(function (t, e) {\n    var o, n, p, r;\n    e.__SV ||\n      ((window.posthog = e),\n      (e._i = []"
  },
  {
    "path": "docs-src/src/content/config.ts",
    "chars": 190,
    "preview": "import { defineCollection } from 'astro:content';\nimport { docsSchema } from '@astrojs/starlight/schema';\n\nexport const "
  },
  {
    "path": "docs-src/src/content/docs/api/README.md",
    "chars": 207,
    "preview": "---\neditUrl: false\nnext: false\nprev: false\ntitle: \"shepherd.js\"\n---\n\n## Modules\n\n- [evented](/api/evented/readme/)\n- [sh"
  },
  {
    "path": "docs-src/src/content/docs/guides/analytics.mdx",
    "chars": 1250,
    "preview": "---\ntitle: Analytics\n---\n\nWith Shepherd, you can track the progress of your users through your app journey. e.g., This c"
  },
  {
    "path": "docs-src/src/content/docs/guides/install.mdx",
    "chars": 1793,
    "preview": "---\ntitle: Installation\n---\n\nimport { Tabs, TabItem } from '@astrojs/starlight/components';\n\n:::note[License Information"
  },
  {
    "path": "docs-src/src/content/docs/guides/license.mdx",
    "chars": 3393,
    "preview": "---\ntitle: License & Pricing\ndescription: Understanding Shepherd.js licensing and when you need a commercial license\n---"
  },
  {
    "path": "docs-src/src/content/docs/guides/styling.md",
    "chars": 933,
    "preview": "---\ntitle: Styling\n---\n\n### Default Styles\n\nShepherd ships with some default styles, but we try to keep it minimal, so y"
  },
  {
    "path": "docs-src/src/content/docs/guides/usage.md",
    "chars": 13541,
    "preview": "---\ntitle: Usage\n---\n\n### Rollup/Webpack Based Builds\n\nThe latest versions of Rollup and Webpack support ES6 imports. Sh"
  },
  {
    "path": "docs-src/src/content/docs/recipes/cookbook.md",
    "chars": 3854,
    "preview": "---\ntitle: Cookbook\n---\n\n### Disable Scroll\n\nPreviously, disabling scrolling was built into Shepherd, but it was buggy\na"
  },
  {
    "path": "docs-src/src/content/docs/recipes/react.md",
    "chars": 1688,
    "preview": "---\ntitle: React Usage\n---\n\n## Use in React\nWe've published a React package for years that really just exports the defau"
  },
  {
    "path": "docs-src/src/env.d.ts",
    "chars": 85,
    "preview": "/// <reference path=\"../.astro/types.d.ts\" />\n/// <reference types=\"astro/client\" />\n"
  },
  {
    "path": "docs-src/src/pages/index.astro",
    "chars": 63,
    "preview": "<meta http-equiv=\"refresh\" content=\"0;url=/guides/install/\" />\n"
  },
  {
    "path": "docs-src/tsconfig.json",
    "chars": 41,
    "preview": "{\n  \"extends\": \"astro/tsconfigs/strict\"\n}"
  },
  {
    "path": "landing/.gitignore",
    "chars": 263,
    "preview": "# build output\ndist/\n# generated types\n.astro/\n\n# dependencies\nnode_modules/\n\n# logs\nnpm-debug.log*\nyarn-debug.log*\nyarn"
  },
  {
    "path": "landing/.vscode/extensions.json",
    "chars": 111,
    "preview": "{\n  \"recommendations\": [\"astro-build.astro-vscode\", \"unifiedjs.vscode-mdx\"],\n  \"unwantedRecommendations\": []\n}\n"
  },
  {
    "path": "landing/.vscode/launch.json",
    "chars": 207,
    "preview": "{\n  \"version\": \"0.2.0\",\n  \"configurations\": [\n    {\n      \"command\": \"./node_modules/.bin/astro dev\",\n      \"name\": \"Dev"
  },
  {
    "path": "landing/README.md",
    "chars": 2857,
    "preview": "# Astro Starter Kit: Blog\n\n```sh\nnpm create astro@latest -- --template blog\n```\n\n[![Open in StackBlitz](https://develope"
  },
  {
    "path": "landing/astro.config.mjs",
    "chars": 422,
    "preview": "import { defineConfig } from 'astro/config';\nimport mdx from '@astrojs/mdx';\nimport sitemap from '@astrojs/sitemap';\nimp"
  },
  {
    "path": "landing/package.json",
    "chars": 736,
    "preview": "{\n  \"name\": \"landing\",\n  \"private\": \"true\",\n  \"type\": \"module\",\n  \"version\": \"0.0.1\",\n  \"scripts\": {\n    \"dev\": \"astro d"
  },
  {
    "path": "landing/public/CNAME",
    "chars": 14,
    "preview": "shepherdjs.dev"
  },
  {
    "path": "landing/public/favicons/site.webmanifest",
    "chars": 281,
    "preview": "{\"name\":\"\",\"short_name\":\"\",\"icons\":[{\"src\":\"/favicons/android-chrome-192x192.png\",\"sizes\":\"192x192\",\"type\":\"image/png\"},"
  },
  {
    "path": "landing/src/components/ArticleCard.astro",
    "chars": 638,
    "preview": "---\nconst { article } = Astro.props;\n---\n\n<article class=\"column feature bg-gray-100 rounded-sm\">\n  <img\n    class=\"obje"
  },
  {
    "path": "landing/src/components/BaseHead.astro",
    "chars": 2403,
    "preview": "---\nimport { ViewTransitions } from 'astro:transitions';\nimport PostHog from './Posthog.astro';\n\n// Import the global.cs"
  },
  {
    "path": "landing/src/components/Footer.astro",
    "chars": 1609,
    "preview": "---\nimport { Image } from 'astro:assets';\n\nimport GitHubLogo from '../images/github.svg?raw';\nimport LinkedInLogo from '"
  },
  {
    "path": "landing/src/components/FormattedDate.astro",
    "chars": 224,
    "preview": "---\ninterface Props {\n\tdate: Date;\n}\n\nconst { date } = Astro.props;\n---\n\n<time datetime={date.toISOString()}>\n\t{\n\t\tdate."
  },
  {
    "path": "landing/src/components/GithubButton.astro",
    "chars": 284,
    "preview": "---\nimport { getFormattedStars } from '../lib/github';\n\nconst starCount = await getFormattedStars();\n---\n\n<a\n  class=\"bu"
  },
  {
    "path": "landing/src/components/Header.astro",
    "chars": 6309,
    "preview": "---\nimport { SITE_TITLE } from '../consts';\nimport ShepherdHead from '../images/shepherd-head.svg?raw';\nimport ShepherdH"
  },
  {
    "path": "landing/src/components/HeaderLink.astro",
    "chars": 495,
    "preview": "---\nimport type { HTMLAttributes } from 'astro/types';\n\ntype Props = HTMLAttributes<'a'>;\n\nconst { href, class: classNam"
  },
  {
    "path": "landing/src/components/Icon.astro",
    "chars": 199,
    "preview": "---\nexport interface Props {\n  icon: string;\n}\n\nconst { icon } = Astro.props as Props;\nconst { default: innerHTML } = aw"
  },
  {
    "path": "landing/src/components/Posthog.astro",
    "chars": 1878,
    "preview": "<script is:inline>\n  !(function (t, e) {\n    var o, n, p, r;\n    e.__SV ||\n      ((window.posthog = e),\n      (e._i = []"
  },
  {
    "path": "landing/src/consts.ts",
    "chars": 291,
    "preview": "// Place any global data in this file.\n// You can import this data from anywhere in your site by using the `import` keyw"
  },
  {
    "path": "landing/src/content/blog/alpha-launch-pro.md",
    "chars": 4774,
    "preview": "---\ntitle: 'Introducing Shepherd Pro: Adding User Journey Analytics'\nauthorId: chuckcarpenter\npubDate: '2024-04-18'\nslug"
  },
  {
    "path": "landing/src/content/blog/secret-handshakes-hidden-passages.md",
    "chars": 3972,
    "preview": "---\ntitle: 'Secret Handshakes and Hidden Passages: Using Redwood Functions'\nauthorId: chuckcarpenter\npubDate: '2024-02-2"
  },
  {
    "path": "landing/src/content/blog/shepherd-the-product.md",
    "chars": 4138,
    "preview": "---\ntitle: 'Innovating in the Open: Building a Product with Shepherd'\nauthorId: chuckcarpenter\npubDate: '2024-01-05'\nslu"
  },
  {
    "path": "landing/src/content/blog/tale-of-frameworks.md",
    "chars": 3252,
    "preview": "---\ntitle: 'A Tale of Frameworks: Our Quirky Quest from Next.js to Redwood.js'\nauthorId: chuckcarpenter\npubDate: '2024-0"
  },
  {
    "path": "landing/src/content/config.ts",
    "chars": 471,
    "preview": "import { defineCollection, z } from 'astro:content';\n\nconst blog = defineCollection({\n  // Type-check frontmatter using "
  },
  {
    "path": "landing/src/env.d.ts",
    "chars": 85,
    "preview": "/// <reference path=\"../.astro/types.d.ts\" />\n/// <reference types=\"astro/client\" />\n"
  },
  {
    "path": "landing/src/layouts/Base.astro",
    "chars": 430,
    "preview": "---\nimport BaseHead from '@components/BaseHead.astro';\nimport { SITE_TITLE, SITE_DESCRIPTION } from '../consts';\n\nconst "
  },
  {
    "path": "landing/src/layouts/BlogPost.astro",
    "chars": 557,
    "preview": "---\nimport type { CollectionEntry } from 'astro:content';\nimport Base from '@layouts/Base.astro';\nimport Header from '@c"
  },
  {
    "path": "landing/src/layouts/MainPage.astro",
    "chars": 3457,
    "preview": "---\nimport Base from './Base.astro';\nimport Header from '../components/Header.astro';\nimport Footer from '../components/"
  },
  {
    "path": "landing/src/lib/github.ts",
    "chars": 812,
    "preview": "const formatter = Intl.NumberFormat('en-US', {\n  notation: 'compact'\n});\n\nconst defaultStarCount = 11800;\nlet starCount:"
  },
  {
    "path": "landing/src/pages/api/checkout.ts",
    "chars": 213,
    "preview": "import { Checkout } from '@polar-sh/astro';\n\nexport const prerender = false;\n\nexport const GET = Checkout({\n  accessToke"
  },
  {
    "path": "landing/src/pages/blog/[...slug].astro",
    "chars": 1704,
    "preview": "---\nimport { type CollectionEntry, getCollection } from 'astro:content';\nimport { Image } from 'astro:assets';\nimport Bl"
  },
  {
    "path": "landing/src/pages/blog/index.astro",
    "chars": 1434,
    "preview": "---\nimport { getCollection } from 'astro:content';\n\nimport Base from '@layouts/Base.astro';\nimport Header from '@compone"
  },
  {
    "path": "landing/src/pages/index.astro",
    "chars": 9022,
    "preview": "---\nimport { Code } from 'astro:components';\nimport MainPage from '@layouts/MainPage.astro';\n---\n\n<MainPage isHome={true"
  },
  {
    "path": "landing/src/pages/pricing.astro",
    "chars": 17604,
    "preview": "---\nimport BaseHead from '@components/BaseHead.astro';\nimport Header from '@components/Header.astro';\nimport Footer from"
  },
  {
    "path": "landing/src/pages/rss.xml.js",
    "chars": 404,
    "preview": "import rss from '@astrojs/rss';\nimport { getCollection } from 'astro:content';\nimport { SITE_TITLE, SITE_DESCRIPTION } f"
  },
  {
    "path": "landing/src/styles/fonts.css",
    "chars": 426,
    "preview": "@font-face {\n  font-family: 'GT Pressura';\n  src: url('/fonts/GTPressura-Bold.woff2') format('woff2'),\n  url('/fonts/GTP"
  },
  {
    "path": "landing/src/styles/prism.css",
    "chars": 3049,
    "preview": "/*\n\nName:       Base16 Ocean Dark\nAuthor:     Chris Kempson (http://chriskempson.com)\n\nPrism template by Bram de Haan (h"
  },
  {
    "path": "landing/src/styles/shepherd.css",
    "chars": 3427,
    "preview": ".shepherd-button{background:#3288e6;border:0;border-radius:3px;color:hsla(0,0%,100%,.75);cursor:pointer;margin-right:.5r"
  },
  {
    "path": "landing/src/styles/styles.css",
    "chars": 6892,
    "preview": "@import 'tailwindcss';\n\n@plugin '@tailwindcss/typography';\n\n@theme {\n  --shadow-*: initial;\n  --shadow-default:\n    0 10"
  },
  {
    "path": "landing/tsconfig.json",
    "chars": 258,
    "preview": "{\n  \"extends\": \"astro/tsconfigs/strict\",\n  \"compilerOptions\": {\n    \"baseUrl\": \".\",\n    \"paths\": {\n      \"@components/*\""
  },
  {
    "path": "package.json",
    "chars": 1888,
    "preview": "{\n  \"name\": \"shepherd-monorepo\",\n  \"private\": \"true\",\n  \"description\": \"The monorepo for Shepherd\",\n  \"repository\": {\n  "
  },
  {
    "path": "packages/react/.gitignore",
    "chars": 2286,
    "preview": "# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore\n\n# Logs\n\nlogs\n_.log\nnpm-debug.log_\nyar"
  },
  {
    "path": "packages/react/CHANGELOG.md",
    "chars": 1585,
    "preview": "## v4.3.0 (2024-01-21)\n\n## v4.0.1 (2022-07-06)\n\n#### :bug: Bug Fix\n\n- `lib`\n  - [#637](https://github.com/shipshapecode/"
  },
  {
    "path": "packages/react/README.md",
    "chars": 1979,
    "preview": "# react-shepherd\n\n[![NPM](https://img.shields.io/npm/v/react-shepherd.svg)](https://www.npmjs.com/package/react-shepherd"
  },
  {
    "path": "packages/react/package.json",
    "chars": 1411,
    "preview": "{\n  \"name\": \"react-shepherd\",\n  \"version\": \"7.0.4\",\n  \"private\": false,\n  \"license\": \"AGPL-3.0\",\n  \"repository\": {\n    \""
  },
  {
    "path": "packages/react/src/index.tsx",
    "chars": 1013,
    "preview": "import { createContext, FC, useContext, type ReactNode } from 'react';\nimport Shepherd from 'shepherd.js';\n\ninterface Sh"
  },
  {
    "path": "packages/react/test/index.test.tsx",
    "chars": 1950,
    "preview": "import React from 'react';\nimport { describe, expect, it } from 'vitest';\nimport { render, fireEvent } from '@testing-li"
  },
  {
    "path": "packages/react/test/setup.ts",
    "chars": 36,
    "preview": "import '@testing-library/jest-dom';\n"
  },
  {
    "path": "packages/react/tsconfig.json",
    "chars": 605,
    "preview": "{\n  \"compilerOptions\": {\n    \"lib\": [\"dom\", \"esnext\"],\n    \"target\": \"es2021\",\n    \"module\": \"esnext\",\n    \"moduleResolu"
  },
  {
    "path": "packages/react/vite.config.ts",
    "chars": 513,
    "preview": "import { resolve } from 'path';\nimport { defineConfig } from 'vite';\nimport dts from 'vite-plugin-dts';\n\n// https://vite"
  },
  {
    "path": "packages/react/vitest.config.ts",
    "chars": 335,
    "preview": "/// <reference types=\"vitest\" />\n/// <reference types=\"vite/client\" />\n\nimport { defineConfig } from 'vite';\nimport reac"
  },
  {
    "path": "pnpm-workspace.yaml",
    "chars": 146,
    "preview": "packages:\n  - shepherd.js\n  - landing\n  - packages/*\n  - docs-src\n\nonlyBuiltDependencies:\n  - cypress\n  - esbuild\n  - sh"
  },
  {
    "path": "shepherd.js/.attw.json",
    "chars": 39,
    "preview": "{\n  \"ignoreRules\": [\"no-resolution\"]\n}\n"
  },
  {
    "path": "shepherd.js/.eslintignore",
    "chars": 24,
    "preview": "/dev/\ndist/\ndummy/\ntmp/\n"
  },
  {
    "path": "shepherd.js/.eslintrc.cjs",
    "chars": 1390,
    "preview": "module.exports = {\n  root: true,\n  parserOptions: {\n    ecmaVersion: 'latest',\n    sourceType: 'module'\n  },\n  extends: "
  },
  {
    "path": "shepherd.js/.gitignore",
    "chars": 298,
    "preview": "# Editors\n/.idea/\n/.vscode/\n\n/.log/\n/.nyc_output/\n/coverage/\n/cypress/\n/test/coverage/\n/node_modules/\n/tmp/\n/.DS_Store\n/"
  },
  {
    "path": "shepherd.js/.prettierignore",
    "chars": 24,
    "preview": "/dev/\ndist/\ndummy/\ntmp/\n"
  },
  {
    "path": "shepherd.js/babel.config.cjs",
    "chars": 399,
    "preview": "module.exports = function (api) {\n  api.cache(true);\n\n  return {\n    presets: ['@babel/preset-typescript'],\n    plugins:"
  },
  {
    "path": "shepherd.js/dev/assets/favicons/browserconfig.xml",
    "chars": 246,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<browserconfig>\n    <msapplication>\n        <tile>\n            <square150x150logo"
  },
  {
    "path": "shepherd.js/dev/assets/favicons/manifest.json",
    "chars": 404,
    "preview": "{\n  \"name\": \"Ship Shape\",\n  \"short_name\": \"Ship Shape\",\n  \"icons\": [\n    {\n      \"src\": \"\\/favicons\\/android-chrome-192x"
  },
  {
    "path": "shepherd.js/dev/css/fonts.css",
    "chars": 534,
    "preview": "@font-face {\n  font-family: 'GT Pressura';\n  src: url('../../landing/public/assets/fonts/GTPressura-Bold.woff2') format("
  },
  {
    "path": "shepherd.js/dev/css/prism.css",
    "chars": 3049,
    "preview": "/*\n\nName:       Base16 Ocean Dark\nAuthor:     Chris Kempson (http://chriskempson.com)\n\nPrism template by Bram de Haan (h"
  },
  {
    "path": "shepherd.js/dev/css/welcome.css",
    "chars": 1889,
    "preview": "html, body {\n  font-family: \"Pier Sans\", \"proxima-nova\", \"Helvetica Neue\", sans-serif;\n}\n\nbody {\n  background-color: rgb"
  },
  {
    "path": "shepherd.js/dev/index.html",
    "chars": 7385,
    "preview": "<html>\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\" />\n    <t"
  },
  {
    "path": "shepherd.js/dev/js/prism.js",
    "chars": 13854,
    "preview": "/* PrismJS 1.15.0\nhttps://prismjs.com/download.html#themes=prism&languages=markup+clike+javascript&plugins=unescaped-mar"
  },
  {
    "path": "shepherd.js/dummy/assets/favicons/browserconfig.xml",
    "chars": 246,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<browserconfig>\n    <msapplication>\n        <tile>\n            <square150x150logo"
  },
  {
    "path": "shepherd.js/dummy/assets/favicons/manifest.json",
    "chars": 404,
    "preview": "{\n  \"name\": \"Ship Shape\",\n  \"short_name\": \"Ship Shape\",\n  \"icons\": [\n    {\n      \"src\": \"\\/favicons\\/android-chrome-192x"
  },
  {
    "path": "shepherd.js/dummy/css/fonts.css",
    "chars": 534,
    "preview": "@font-face {\n  font-family: 'GT Pressura';\n  src: url('../../landing/public/assets/fonts/GTPressura-Bold.woff2') format("
  },
  {
    "path": "shepherd.js/dummy/css/prism.css",
    "chars": 3049,
    "preview": "/*\n\nName:       Base16 Ocean Dark\nAuthor:     Chris Kempson (http://chriskempson.com)\n\nPrism template by Bram de Haan (h"
  },
  {
    "path": "shepherd.js/dummy/css/welcome.css",
    "chars": 1889,
    "preview": "html, body {\n  font-family: \"Pier Sans\", \"proxima-nova\", \"Helvetica Neue\", sans-serif;\n}\n\nbody {\n  background-color: rgb"
  },
  {
    "path": "shepherd.js/dummy/index.html",
    "chars": 6953,
    "preview": "<html>\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\" />\n    <t"
  },
  {
    "path": "shepherd.js/dummy/js/prism.js",
    "chars": 13854,
    "preview": "/* PrismJS 1.15.0\nhttps://prismjs.com/download.html#themes=prism&languages=markup+clike+javascript&plugins=unescaped-mar"
  },
  {
    "path": "shepherd.js/eslint.config.js",
    "chars": 2561,
    "preview": "import js from '@eslint/js';\nimport cypress from 'eslint-plugin-cypress/flat';\nimport globals from 'globals';\nimport ts "
  },
  {
    "path": "shepherd.js/package.json",
    "chars": 4263,
    "preview": "{\n  \"name\": \"shepherd.js\",\n  \"version\": \"15.2.2\",\n  \"description\": \"Guide your users through a tour of your app.\",\n  \"ke"
  },
  {
    "path": "shepherd.js/rollup.config.mjs",
    "chars": 4836,
    "preview": "import autoprefixer from 'autoprefixer';\nimport { execaCommand } from 'execa';\nimport fs from 'fs';\nimport cssnanoPlugin"
  },
  {
    "path": "shepherd.js/src/components/shepherd-button.css",
    "chars": 634,
    "preview": ".shepherd-button {\n  background: rgb(50, 136, 230);\n  border: 0;\n  border-radius: 3px;\n  color: rgba(255, 255, 255, 0.75"
  },
  {
    "path": "shepherd.js/src/components/shepherd-button.ts",
    "chars": 1145,
    "preview": "import { h } from '../utils/dom.ts';\nimport { isFunction } from '../utils/type-check.ts';\nimport type { Step, StepOption"
  },
  {
    "path": "shepherd.js/src/components/shepherd-cancel-icon.css",
    "chars": 488,
    "preview": ".shepherd-cancel-icon {\n  background: transparent;\n  border: none;\n  color: rgba(128, 128, 128, 0.75);\n  font-size: 2em;"
  },
  {
    "path": "shepherd.js/src/components/shepherd-cancel-icon.ts",
    "chars": 683,
    "preview": "import { h } from '../utils/dom.ts';\nimport type { Step, StepOptionsCancelIcon } from '../step.ts';\nimport './shepherd-c"
  },
  {
    "path": "shepherd.js/src/components/shepherd-content.css",
    "chars": 75,
    "preview": ".shepherd-content {\n  border-radius: 5px;\n  outline: none;\n  padding: 0;\n}\n"
  },
  {
    "path": "shepherd.js/src/components/shepherd-content.ts",
    "chars": 974,
    "preview": "import { h } from '../utils/dom.ts';\nimport { createShepherdFooter } from './shepherd-footer.ts';\nimport { createShepher"
  },
  {
    "path": "shepherd.js/src/components/shepherd-element.css",
    "chars": 1641,
    "preview": ".shepherd-element {\n  background: #fff;\n  border: none;\n  border-radius: 5px;\n  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2)"
  },
  {
    "path": "shepherd.js/src/components/shepherd-element.ts",
    "chars": 5753,
    "preview": "import { h } from '../utils/dom.ts';\nimport { createShepherdContent } from './shepherd-content.ts';\nimport { isUndefined"
  },
  {
    "path": "shepherd.js/src/components/shepherd-footer.css",
    "chars": 235,
    "preview": ".shepherd-footer {\n  border-bottom-left-radius: 5px;\n  border-bottom-right-radius: 5px;\n  display: flex;\n  justify-conte"
  },
  {
    "path": "shepherd.js/src/components/shepherd-footer.ts",
    "chars": 462,
    "preview": "import { h } from '../utils/dom.ts';\nimport { createShepherdButton } from './shepherd-button.ts';\nimport type { Step } f"
  },
  {
    "path": "shepherd.js/src/components/shepherd-header.css",
    "chars": 302,
    "preview": ".shepherd-header {\n  align-items: center;\n  border-top-left-radius: 5px;\n  border-top-right-radius: 5px;\n  display: flex"
  },
  {
    "path": "shepherd.js/src/components/shepherd-header.ts",
    "chars": 651,
    "preview": "import { h } from '../utils/dom.ts';\nimport { createShepherdCancelIcon } from './shepherd-cancel-icon.ts';\nimport { crea"
  },
  {
    "path": "shepherd.js/src/components/shepherd-modal.css",
    "chars": 557,
    "preview": ".shepherd-modal-overlay-container {\n  height: 0;\n  left: 0;\n  opacity: 0;\n  overflow: hidden;\n  pointer-events: none;\n  "
  },
  {
    "path": "shepherd.js/src/components/shepherd-modal.ts",
    "chars": 7905,
    "preview": "import { svgEl } from '../utils/dom.ts';\nimport { makeOverlayPath } from '../utils/overlay-path.ts';\nimport type { Step "
  },
  {
    "path": "shepherd.js/src/components/shepherd-text.css",
    "chars": 201,
    "preview": ".shepherd-text {\n  color: rgba(0, 0, 0, 0.75);\n  font-size: 1rem;\n  line-height: 1.3em;\n  padding: 0.75em;\n}\n\n.shepherd-"
  },
  {
    "path": "shepherd.js/src/components/shepherd-text.ts",
    "chars": 582,
    "preview": "import { h } from '../utils/dom.ts';\nimport { isHTMLElement, isFunction } from '../utils/type-check.ts';\nimport type { S"
  },
  {
    "path": "shepherd.js/src/components/shepherd-title.css",
    "chars": 154,
    "preview": ".shepherd-title {\n  color: rgba(0, 0, 0, 0.75);\n  display: flex;\n  font-size: 1rem;\n  font-weight: normal;\n  flex: 1 0 a"
  },
  {
    "path": "shepherd.js/src/components/shepherd-title.ts",
    "chars": 498,
    "preview": "import { h } from '../utils/dom.ts';\nimport { isFunction } from '../utils/type-check.ts';\nimport type { StringOrStringFu"
  },
  {
    "path": "shepherd.js/src/evented.ts",
    "chars": 2292,
    "preview": "import { isUndefined } from './utils/type-check.ts';\n\nexport type Bindings = {\n  [key: string]: Array<{ handler: () => v"
  },
  {
    "path": "shepherd.js/src/shepherd.ts",
    "chars": 559,
    "preview": "import { Shepherd, Tour } from './tour.ts';\nimport { StepNoOp, TourNoOp } from './utils/general.ts';\nimport { Step } fro"
  },
  {
    "path": "shepherd.js/src/step.ts",
    "chars": 22111,
    "preview": "import { deepmerge } from 'deepmerge-ts';\nimport { Evented } from './evented.ts';\nimport autoBind from './utils/auto-bin"
  },
  {
    "path": "shepherd.js/src/tour.ts",
    "chars": 11416,
    "preview": "import { Evented } from './evented.ts';\nimport { Step, type StepOptions } from './step.ts';\nimport autoBind from './util"
  },
  {
    "path": "shepherd.js/src/utils/auto-bind.ts",
    "chars": 650,
    "preview": "/**\n * Binds all the methods on a JS Class to the `this` context of the class.\n * Adapted from https://github.com/sindre"
  },
  {
    "path": "shepherd.js/src/utils/bind.ts",
    "chars": 1749,
    "preview": "import type { Step } from '../step.ts';\nimport { isUndefined } from './type-check.ts';\n\n/**\n * Sets up the handler to de"
  },
  {
    "path": "shepherd.js/src/utils/cleanup.ts",
    "chars": 852,
    "preview": "import type { Tour } from '../tour.ts';\nimport { isHTMLElement } from './type-check.ts';\n\n/**\n * Cleanup the steps and s"
  },
  {
    "path": "shepherd.js/src/utils/dom.ts",
    "chars": 1574,
    "preview": "type Attrs = Record<string, unknown>;\ntype Child = Node | string | null | undefined | false;\n\n/**\n * Create an HTML elem"
  },
  {
    "path": "shepherd.js/src/utils/floating-ui.ts",
    "chars": 5663,
    "preview": "import { deepmerge } from 'deepmerge-ts';\nimport { shouldCenterStep } from './general.ts';\nimport {\n  autoUpdate,\n  arro"
  },
  {
    "path": "shepherd.js/src/utils/general.ts",
    "chars": 2951,
    "preview": "import { type Tour, type TourOptions } from '../tour.ts';\nimport {\n  type StepOptionsAttachTo,\n  type Step,\n  type StepO"
  },
  {
    "path": "shepherd.js/src/utils/overlay-path.ts",
    "chars": 1745,
    "preview": "interface OverlayPathParams {\n  height: number;\n  r?:\n    | number\n    | {\n        bottomLeft: number;\n        bottomRig"
  },
  {
    "path": "shepherd.js/src/utils/type-check.ts",
    "chars": 1130,
    "preview": "/**\n * Checks if `value` is classified as an `Element`.\n * @param value The param to check if it is an Element\n */\nexpor"
  },
  {
    "path": "shepherd.js/test/cypress/.gitignore",
    "chars": 243,
    "preview": "# Editors\n/.idea/\n/.vscode/\n\n/.log/\n/.nyc_output/\n/coverage/\n/cypress/\n/dist/\n/node_modules/\n/.DS_Store\n/.sass-cache\n/np"
  },
  {
    "path": "shepherd.js/test/cypress/cypress.config.js",
    "chars": 527,
    "preview": "import { defineConfig } from 'cypress';\nimport { fileURLToPath } from 'url';\nimport { dirname, join } from 'path';\n\ncons"
  },
  {
    "path": "shepherd.js/test/cypress/dummy/assets/favicons/browserconfig.xml",
    "chars": 246,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<browserconfig>\n    <msapplication>\n        <tile>\n            <square150x150logo"
  },
  {
    "path": "shepherd.js/test/cypress/dummy/assets/favicons/manifest.json",
    "chars": 404,
    "preview": "{\n  \"name\": \"Ship Shape\",\n  \"short_name\": \"Ship Shape\",\n  \"icons\": [\n    {\n      \"src\": \"\\/favicons\\/android-chrome-192x"
  },
  {
    "path": "shepherd.js/test/cypress/dummy/css/fonts.css",
    "chars": 534,
    "preview": "@font-face {\n  font-family: 'GT Pressura';\n  src: url('../../landing/public/assets/fonts/GTPressura-Bold.woff2') format("
  },
  {
    "path": "shepherd.js/test/cypress/dummy/css/prism.css",
    "chars": 3049,
    "preview": "/*\n\nName:       Base16 Ocean Dark\nAuthor:     Chris Kempson (http://chriskempson.com)\n\nPrism template by Bram de Haan (h"
  },
  {
    "path": "shepherd.js/test/cypress/dummy/css/welcome.css",
    "chars": 1889,
    "preview": "html, body {\n  font-family: \"Pier Sans\", \"proxima-nova\", \"Helvetica Neue\", sans-serif;\n}\n\nbody {\n  background-color: rgb"
  },
  {
    "path": "shepherd.js/test/cypress/dummy/index.html",
    "chars": 3817,
    "preview": "<html>\n  <head>\n    <meta charset=\"utf-8\" />\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge,chrome=1\" />\n    <t"
  },
  {
    "path": "shepherd.js/test/cypress/dummy/js/prism.js",
    "chars": 22521,
    "preview": "/* PrismJS 1.15.0\nhttps://prismjs.com/download.html#themes=prism&languages=markup+clike+javascript&plugins=unescaped-mar"
  },
  {
    "path": "shepherd.js/test/cypress/examples/css/no-css-import.html",
    "chars": 305,
    "preview": "<html>\n  <head>\n    <script type=\"module\">\n      import Shepherd from '../../../../dist/js/shepherd.mjs';\n      window.S"
  },
  {
    "path": "shepherd.js/test/cypress/examples/css/with-css-import.html",
    "chars": 392,
    "preview": "<html>\n  <head>\n    <link\n      rel=\"stylesheet\"\n      href=\"../../../../dist/css/shepherd.css\"\n    />\n    <script type="
  },
  {
    "path": "shepherd.js/test/cypress/examples/destroying-elements.html",
    "chars": 643,
    "preview": "<html>\n  <head>\n    <link\n      rel=\"stylesheet\"\n      href=\"../../../dist/css/shepherd.css\"\n    />\n    <script type=\"mo"
  },
  {
    "path": "shepherd.js/test/cypress/integration/a11y.cy.js",
    "chars": 10643,
    "preview": "import setupTour from '../utils/setup-tour';\n\ndescribe('a11y', () => {\n  let Shepherd;\n\n  beforeEach(() => {\n    Shepher"
  },
  {
    "path": "shepherd.js/test/cypress/integration/css.cy.js",
    "chars": 929,
    "preview": "/*\n * The `.shepherd-modal-overlay-container` class is chosen for inspection\n * because the Svelte styles for the modal "
  },
  {
    "path": "shepherd.js/test/cypress/integration/destroying-elements.cy.js",
    "chars": 2456,
    "preview": "import setupTour from '../utils/setup-tour';\n\ndescribe('destroying-elements', () => {\n  let Shepherd;\n\n  beforeEach(() ="
  },
  {
    "path": "shepherd.js/test/cypress/integration/element-targeting.cy.js",
    "chars": 2107,
    "preview": "import setupTour from '../utils/setup-tour';\n\ndescribe('Attaching tooltips to target elements in the DOM on each step', "
  },
  {
    "path": "shepherd.js/test/cypress/integration/modal.cy.js",
    "chars": 3385,
    "preview": "import setupTour from '../utils/setup-tour';\nimport { expect } from 'chai';\n\ndescribe('Modal mode', () => {\n  let Shephe"
  },
  {
    "path": "shepherd.js/test/cypress/integration/test.acceptance.cy.js",
    "chars": 20198,
    "preview": "import setupTour from '../utils/setup-tour';\nimport { assert } from 'chai';\n\nlet Shepherd;\n\ndescribe('Shepherd Acceptanc"
  },
  {
    "path": "shepherd.js/test/cypress/support/commands.js",
    "chars": 841,
    "preview": "// ***********************************************\n// This example commands.js shows you how to\n// create various custom"
  },
  {
    "path": "shepherd.js/test/cypress/support/index.js",
    "chars": 703,
    "preview": "require('cypress-plugin-tab');\n\n// ***********************************************************\n// This example support/i"
  },
  {
    "path": "shepherd.js/test/cypress/utils/default-buttons.js",
    "chars": 333,
    "preview": "export default {\n  cancel: {\n    classes: 'shepherd-button-secondary cancel-button',\n    text: 'Exit',\n    type: 'cancel"
  },
  {
    "path": "shepherd.js/test/cypress/utils/default-steps.js",
    "chars": 2942,
    "preview": "export default function (shepherd) {\n  return [\n    {\n      text: `\n         <p>\n           Shepherd is a JavaScript lib"
  },
  {
    "path": "shepherd.js/test/cypress/utils/setup-tour.js",
    "chars": 893,
    "preview": "import defaultSteps from './default-steps';\n\n/**\n * Setup a tour\n * @param {Shepherd} Shepherd The Shepherd instance\n * "
  },
  {
    "path": "shepherd.js/test/unit/babel.config.cjs",
    "chars": 447,
    "preview": "module.exports = function (api) {\n  api.cache(true);\n\n  return {\n    env: {\n      development: {\n        presets: [\n    "
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-button.spec.js",
    "chars": 8612,
    "preview": "import { afterEach, beforeEach, describe, expect, it } from 'vitest';\nimport { createShepherdButton } from '../../../src"
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-content.spec.js",
    "chars": 2077,
    "preview": "import { afterEach, beforeEach, describe, expect, it } from 'vitest';\nimport { createShepherdContent } from '../../../sr"
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-element.spec.js",
    "chars": 12428,
    "preview": "import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';\nimport { createShepherdElement } from '../../."
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-footer.spec.js",
    "chars": 2137,
    "preview": "import { afterEach, beforeEach, describe, expect, it } from 'vitest';\nimport { createShepherdFooter } from '../../../src"
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-header.spec.js",
    "chars": 5641,
    "preview": "import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';\nimport { createShepherdHeader } from '../../.."
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-modal.spec.js",
    "chars": 22878,
    "preview": "import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';\nimport { createShepherdModal } from '../../../"
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-text.spec.js",
    "chars": 1928,
    "preview": "import { afterEach, beforeEach, describe, expect, it } from 'vitest';\nimport { createShepherdText } from '../../../src/c"
  },
  {
    "path": "shepherd.js/test/unit/components/shepherd-title.spec.js",
    "chars": 940,
    "preview": "import { afterEach, beforeEach, describe, expect, it } from 'vitest';\nimport { createShepherdTitle } from '../../../src/"
  },
  {
    "path": "shepherd.js/test/unit/evented.spec.js",
    "chars": 2277,
    "preview": "import { beforeEach, describe, expect, it, vi } from 'vitest';\n\nimport { Evented } from '../../src/evented';\n\ndescribe('"
  },
  {
    "path": "shepherd.js/test/unit/server.spec.js",
    "chars": 381,
    "preview": "/**\n * @jest-environment node\n */\n\nimport { describe, expect, it } from 'vitest';\nimport Shepherd from '../../src/shephe"
  },
  {
    "path": "shepherd.js/test/unit/setupTests.js",
    "chars": 944,
    "preview": "import { vi } from 'vitest';\nimport * as matchers from '@testing-library/jest-dom/matchers';\nimport { expect } from 'vit"
  },
  {
    "path": "shepherd.js/test/unit/step.spec.js",
    "chars": 25946,
    "preview": "import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';\nimport Shepherd from '../../src/shepherd';\nimp"
  },
  {
    "path": "shepherd.js/test/unit/tour.spec.js",
    "chars": 23824,
    "preview": "import _ from 'lodash';\nimport { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';\nimport Shepherd from '"
  },
  {
    "path": "shepherd.js/test/unit/utils/bind.spec.js",
    "chars": 2620,
    "preview": "import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';\n\nimport { bindAdvance } from '../../../src/uti"
  },
  {
    "path": "shepherd.js/test/unit/utils/cleanup.spec.js",
    "chars": 3703,
    "preview": "import { describe, expect, it } from 'vitest';\nimport { cleanupSteps } from '../../../src/utils/cleanup';\n\ndescribe('Cle"
  },
  {
    "path": "shepherd.js/test/unit/utils/general.spec.js",
    "chars": 5209,
    "preview": "import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';\nimport { Step } from '../../../src/step';\nimpo"
  },
  {
    "path": "shepherd.js/tsconfig.json",
    "chars": 2008,
    "preview": "{\n  \"$schema\": \"https://json.schemastore.org/tsconfig\",\n  \"compilerOptions\": {\n    \"target\": \"es2021\",\n    \"module\": \"es"
  },
  {
    "path": "shepherd.js/vitest.config.ts",
    "chars": 711,
    "preview": "import { defineConfig } from 'vitest/config';\n\nexport default defineConfig({\n  test: {\n    globals: true,\n    environmen"
  },
  {
    "path": "stderr.log",
    "chars": 2333,
    "preview": "Warning: unknown package \"shepherd-docs\"\nWarning: unknown package \"landing\"\nWarning: unknown package \"shepherd-docs\"\nWar"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the shipshapecode/shepherd GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 190 files (669.1 KB), approximately 188.0k tokens, and a symbol index with 177 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!