🚀 VueTube Vue component acting as a thin layer over the YouTube IFrame Player API which renders fast

Overview

🚀 VueTube

Vue component acting as a thin layer over the YouTube IFrame Player API which renders fast.
Explore website »


NPM version NPM downloads GitHub issues GitHub last commit npm type definitions npm bundle size

Key FeaturesInstallationDocumentationFAQBrowsers supportLicenseInspirationSupport the projectContributing

Key Features

  • Small ~2KB js (minified and gzipped) and ~1KB css
  • No dependencies
  • Lazy load support
  • Webp support, and fallback to jpg if the browser doesn't support it
  • Render fast, improve your web's performance
  • Built with a11y in mind

Installation ⚙️

npm

# Vue 2
npm install vuetube

# Vue 3
npm install [email protected]

yarn

# Vue 2
yarn add vuetube

# Vue 3
yarn add [email protected]

Install plugin

/**
 * Vue 2
 */
import Vue from 'vue'
import VueTube from 'vuetube';
import 'vuetube/dist/vuetube.css'

Vue.use(VueTube)

/**
 * Vue 3
 */
import { createApp } from 'vue'
import VueTube from 'vuetube';
import 'vuetube/dist/vuetube.css'
import App from './App.vue'

const app = createApp(App)
app.use(VueTube)

or

Install component

/**
 * Vue 2
 */
import Vue from 'vue'
import { VueTube } from 'vuetube';
import 'vuetube/dist/vuetube.css'

Vue.component('VueTube', VueTube)

/**
 * Vue 3
 */
import { createApp } from 'vue'
import { VueTube } from 'vuetube';
import 'vuetube/dist/vuetube.css'
import App from './App.vue'

const app = createApp(App)
app.component('VueTube', VueTube)

Documentation 🤗

Browse online documentation here

Props

Prop Type Description Default value
videoId string The ID of YouTube video (required) -
isPlaylist boolean Should embed a playlist of several videos false
aspectRatio number The aspect ratio for iframe 16 / 9
enableCookies boolean Change video host to www.youtube.com. By default, video loaded from https://www.youtube-nocookie.com. false
playerVars object Parameters that are available in the YouTube embedded player. {}
disableWarming boolean Disable warming up connections to origins that are in the critical path on component hover. false
disableWebp boolean Disable webp thumbnail. false
imageAlt string Alt attribute for image ''
imageLoading string Loading attribute for image 'lazy'
resolution string Thumbnail resolution from YouTube API. 'sddefault'
buttonLabel string Aria-label attribute for button 'Play video'
iframeTitle string Title attribute for iframe ''
iframeAllow string Allow attribute for iframe 'accelerometer;autoplay;encrypted-media;gyroscope;picture-in-picture'

Events

Event name Description
player:play The user clicked on the play button
player:load Iframe has been loaded
player:ready This event fires whenever a player has finished loading and is ready to begin receiving API calls.

Make sure you pass enablejsapi: 1 to the playerVars props object

This event is similar to onReady event from Youtube API documentation.
player:statechange This event fires whenever the player's state changes.

Make sure you pass enablejsapi: 1 to the playerVars props object

This event is similar to onStateChange event from Youtube API documentation.
player:playbackqualitychange This event fires whenever the video playback quality changes.

Make sure you pass enablejsapi: 1 to the playerVars props object

This event is similar to onPlaybackQualityChange event from Youtube API documentation.
player:playbackratechange This event fires whenever the video playback rate changes.

Make sure you pass enablejsapi: 1 to the playerVars props object

This event is similar to onPlaybackRateChange event from Youtube API documentation.
player:error This event fires if an error occurs in the player.

Make sure you pass enablejsapi: 1 to the playerVars props object

This event is similar to onError event from Youtube API documentation.
player:apichange This event is fired to indicate that the player has loaded (or unloaded) a module with exposed API methods.

Make sure you pass enablejsapi: 1 to the playerVars props object

This event is similar to onApiChange event from Youtube API documentation.

FAQ 🗯️

How to get access to player API?

You need to pass enablejsapi: 1 to the playerVars props object. Then subscribe on player:ready event.

">
  <template>
    <vue-tube @player:ready="onPlayerReady">vue-tube>
  template>

  <script>
    export default {
      data() {
        return {
          playerInstance: null,
        }
      },
      
      methods: {
        onPlayerReady(event) {
          this.playerInstance = event.target
        }
      }
    }
  script>

Now you have a player instance in the playerInstance. You can do whatever you want with video.

this.playerInstance.playVideo(), this.playerInstance.pauseVideo() etc. All methods can be found here.

How to use my play button?

You can pass your button through the icon slot.

How to use my thumbnail?

You can pass your thumbnail through the thumbnail slot.

">
  <template>
    <vue-tube>
      <template #thumbnail>
        <img src="#" alt="">
      template>
    vue-tube>
  template>

Browsers support 🌎

IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
iOS Safari
iOS Safari
Samsung
Samsung
Opera
Opera
Yandex
Yandex
IE11, Edge 80 60+ 60+ 10+ 10+ 12+ 50+ 14.4+

License 📄

MIT

Inspiration 👏

Vuetube is a vue component version of the popular package lite-youtube-embed.

Support the project

If you feel awesome and want to support me in a small way, please consider starring and sharing the repo!

Contributing 🎉

Found a bug? Missing a specific feature? Your contributions are always welcome! Please have a look at the contribution guidelines first.

Contributors ❤️


Alexey Istomin

️️️️ ♿️ ⚠️ 💻 🤔
Comments
  • fix(deps): bump actions/cache from 2.1.5 to 3.2.1

    fix(deps): bump actions/cache from 2.1.5 to 3.2.1

    Bumps actions/cache from 2.1.5 to 3.2.1.

    Release notes

    Sourced from actions/cache's releases.

    v3.2.1

    What's Changed

    Full Changelog: https://github.com/actions/cache/compare/v3.2.0...v3.2.1

    v3.2.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/actions/cache/compare/v3...v3.2.0

    v3.2.0-beta.1

    What's Changed

    v3.1.0-beta.3

    What's Changed

    • Bug fixes for bsdtar fallback, if gnutar not available, and gzip fallback, if cache saved using old cache action, on windows.

    Full Changelog: https://github.com/actions/cache/compare/v3.1.0-beta.2...v3.1.0-beta.3

    ... (truncated)

    Changelog

    Sourced from actions/cache's changelog.

    3.2.1

    • Update @actions/cache on windows to use gnu tar and zstd by default and fallback to bsdtar and zstd if gnu tar is not available. (issue)
    • Added support for fallback to gzip to restore old caches on windows.
    • Added logs for cache version in case of a cache miss.
    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 2
  • fix(deps): bump actions/cache from 2.1.5 to 3.2.0

    fix(deps): bump actions/cache from 2.1.5 to 3.2.0

    Bumps actions/cache from 2.1.5 to 3.2.0.

    Release notes

    Sourced from actions/cache's releases.

    v3.2.0

    What's Changed

    New Contributors

    Full Changelog: https://github.com/actions/cache/compare/v3...v3.2.0

    v3.2.0-beta.1

    What's Changed

    v3.1.0-beta.3

    What's Changed

    • Bug fixes for bsdtar fallback, if gnutar not available, and gzip fallback, if cache saved using old cache action, on windows.

    Full Changelog: https://github.com/actions/cache/compare/v3.1.0-beta.2...v3.1.0-beta.3

    v3.1.0-beta.2

    What's Changed

    Full Changelog: https://github.com/actions/cache/compare/v3.1.0-beta.1...v3.1.0-beta.2

    ... (truncated)

    Changelog

    Sourced from actions/cache's changelog.

    3.2.0

    • Released the two new actions - restore and save for granular control on cache
    Commits
    • c17f4bf GA for granular cache (#1035)
    • ac25611 docs: fix an invalid link in workarounds.md (#929)
    • dc097e3 Update examples.md (#1026)
    • fb86cbf Updated node example (#1008)
    • a57932f Merge pull request #1014 from jongwooo/chore/use-built-in-cache-action
    • 04b13ca chore: Use built-in cache action to cache dependencies
    • 941bc71 Merge pull request #1004 from jongwooo/chore/use-cache-in-check-dist
    • 08d8639 Merge branch 'main' into chore/use-cache-in-check-dist
    • a2f324e Merge pull request #1013 from jongwooo/refactor/use-early-return-pattern-to-a...
    • 35f4702 refactor: Use early return pattern to avoid nested conditions
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-a11y from 6.2.8 to 6.5.14

    chore(deps-dev): bump @storybook/addon-a11y from 6.2.8 to 6.5.14

    Bumps @storybook/addon-a11y from 6.2.8 to 6.5.14.

    Release notes

    Sourced from @​storybook/addon-a11y's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-a11y's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-actions from 6.2.8 to 6.5.14

    chore(deps-dev): bump @storybook/addon-actions from 6.2.8 to 6.5.14

    Bumps @storybook/addon-actions from 6.2.8 to 6.5.14.

    Release notes

    Sourced from @​storybook/addon-actions's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-actions's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addons from 6.2.8 to 6.5.14

    chore(deps-dev): bump @storybook/addons from 6.2.8 to 6.5.14

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-controls from 6.2.8 to 6.5.14

    chore(deps-dev): bump @storybook/addon-controls from 6.2.8 to 6.5.14

    Bumps @storybook/addon-controls from 6.2.8 to 6.5.14.

    Release notes

    Sourced from @​storybook/addon-controls's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-controls's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-essentials from 6.2.8 to 6.5.14

    chore(deps-dev): bump @storybook/addon-essentials from 6.2.8 to 6.5.14

    Bumps @storybook/addon-essentials from 6.2.8 to 6.5.14.

    Release notes

    Sourced from @​storybook/addon-essentials's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-essentials's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-links from 6.2.8 to 6.5.14

    chore(deps-dev): bump @storybook/addon-links from 6.2.8 to 6.5.14

    Bumps @storybook/addon-links from 6.2.8 to 6.5.14.

    Release notes

    Sourced from @​storybook/addon-links's releases.

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-links's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/theming from 6.2.8 to 6.5.14

    chore(deps-dev): bump @storybook/theming from 6.2.8 to 6.5.14

    Bumps @storybook/theming from 6.2.8 to 6.5.14.

    Release notes

    Sourced from @​storybook/theming's releases.

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.12

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    v6.5.11

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    ... (truncated)

    Changelog

    Sourced from @​storybook/theming's changelog.

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    6.5.14-alpha.0 (November 19, 2022)

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    ... (truncated)

    Commits
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • 16dfcaa v6.5.14-alpha.1
    • 2f9f0de Update git head to 6.5.14-alpha.0, update yarn.lock [ci skip]
    • c4e122a v6.5.14-alpha.0
    • 600e497 Update git head to 6.5.13, update yarn.lock [ci skip]
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-controls from 6.2.8 to 6.5.13

    chore(deps-dev): bump @storybook/addon-controls from 6.2.8 to 6.5.13

    Bumps @storybook/addon-controls from 6.2.8 to 6.5.13.

    Release notes

    Sourced from @​storybook/addon-controls's releases.

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.12

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    v6.5.11

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in [email protected] #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    v6.5.11-alpha.2

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    v6.5.11-alpha.1

    Bug Fixes

    • Vue: Fix enum check in extractArgTypes #18959

    v6.5.11-alpha.0

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-controls's changelog.

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    6.5.13-alpha.0 (September 28, 2022)

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.12 (September 14, 2022)

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    6.5.11 (September 13, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in [email protected] #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    6.5.11-alpha.2 (September 7, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    ... (truncated)

    Commits
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • 03f5ebe v6.5.13-alpha.1
    • fc66892 Update git head to 6.5.13-alpha.0, update yarn.lock [ci skip]
    • 1423ff5 v6.5.13-alpha.0
    • ad38b6b Update git head to 6.5.12, update yarn.lock [ci skip]
    • e3991cb v6.5.12
    • 5be644b Update git head to 6.5.11, update yarn.lock [ci skip]
    • db56a25 v6.5.11
    • 0a584e6 Update git head to 6.5.11-alpha.2, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-actions from 6.2.8 to 6.5.13

    chore(deps-dev): bump @storybook/addon-actions from 6.2.8 to 6.5.13

    Bumps @storybook/addon-actions from 6.2.8 to 6.5.13.

    Release notes

    Sourced from @​storybook/addon-actions's releases.

    v6.5.13

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.13-alpha.1

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    v6.5.13-alpha.0

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    v6.5.12

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    v6.5.11

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in [email protected] #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    v6.5.11-alpha.2

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    v6.5.11-alpha.1

    Bug Fixes

    • Vue: Fix enum check in extractArgTypes #18959

    v6.5.11-alpha.0

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-actions's changelog.

    6.5.13 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509
    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.13-alpha.1 (October 24, 2022)

    Bug Fixes

    • Telemetry: Send start/build events even when there is no generator #19507
    • Telemetry: Fix inconsistent debug #19509

    6.5.13-alpha.0 (September 28, 2022)

    Bug Fixes

    • Addon-docs: Pass remarks plugins to mdx loader #18740
    • Angular: Alias decorateStory as applyDecorators #19189

    6.5.12 (September 14, 2022)

    Bug Fixes

    • React: Fix issue with react 18 implementation #19125

    6.5.11 (September 13, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993
    • Vue: Fix enum check in extractArgTypes #18959
    • React: Fix callback behavior in [email protected] #18737
    • Store: always call composeConfigs in setProjectAnnotations #18916
    • Telemetry: improve addon extraction logic #18868
    • Addon-docs: Check for undefined before reading property in extractArgTypes.ts #18710nance

    6.5.11-alpha.2 (September 7, 2022)

    Bug Fixes

    • CLI: Fix race condition in sb init #19083
    • Core: Fix WebProjectAnnotations export in preview-web for back-compat #19048
    • Addon-interactions: Fix IE support by replacing array includes #18993

    ... (truncated)

    Commits
    • 9bc627d v6.5.13
    • ef45ce7 Update git head to 6.5.13-alpha.1, update yarn.lock [ci skip]
    • 03f5ebe v6.5.13-alpha.1
    • fc66892 Update git head to 6.5.13-alpha.0, update yarn.lock [ci skip]
    • 1423ff5 v6.5.13-alpha.0
    • ad38b6b Update git head to 6.5.12, update yarn.lock [ci skip]
    • e3991cb v6.5.12
    • 5be644b Update git head to 6.5.11, update yarn.lock [ci skip]
    • db56a25 v6.5.11
    • 0a584e6 Update git head to 6.5.11-alpha.2, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 2
  • chore(deps-dev): bump @storybook/addon-a11y from 6.2.8 to 6.5.15

    chore(deps-dev): bump @storybook/addon-a11y from 6.2.8 to 6.5.15

    Bumps @storybook/addon-a11y from 6.2.8 to 6.5.15.

    Release notes

    Sourced from @​storybook/addon-a11y's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-a11y's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • fix(deps): bump actions/cache from 2.1.5 to 3.2.2

    fix(deps): bump actions/cache from 2.1.5 to 3.2.2

    Bumps actions/cache from 2.1.5 to 3.2.2.

    Release notes

    Sourced from actions/cache's releases.

    v3.2.2

    What's Changed

    New Contributors

    Full Changelog: https://github.com/actions/cache/compare/v3.2.1...v3.2.2

    v3.2.1

    What's Changed

    Full Changelog: https://github.com/actions/cache/compare/v3.2.0...v3.2.1

    v3.2.0

    What's Changed

    New Contributors

    ... (truncated)

    Changelog

    Sourced from actions/cache's changelog.

    3.2.2

    • Reverted the changes made in 3.2.1 to use gnu tar and zstd by default on windows.
    Commits
    • 4723a57 Revert compression changes related to windows but keep version logging (#1049)
    • d1507cc Merge pull request #1042 from me-and/correct-readme-re-windows
    • 3337563 Merge branch 'main' into correct-readme-re-windows
    • 60c7666 save/README.md: Fix typo in example (#1040)
    • b053f2b Fix formatting error in restore/README.md (#1044)
    • 501277c README.md: remove outdated Windows cache tip link
    • c1a5de8 Upgrade codeql to v2 (#1023)
    • 9b0be58 Release compression related changes for windows (#1039)
    • c17f4bf GA for granular cache (#1035)
    • ac25611 docs: fix an invalid link in workarounds.md (#929)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies github_actions 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/addon-essentials from 6.2.8 to 6.5.15

    chore(deps-dev): bump @storybook/addon-essentials from 6.2.8 to 6.5.15

    Bumps @storybook/addon-essentials from 6.2.8 to 6.5.15.

    Release notes

    Sourced from @​storybook/addon-essentials's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-essentials's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/addon-links from 6.2.8 to 6.5.15

    chore(deps-dev): bump @storybook/addon-links from 6.2.8 to 6.5.15

    Bumps @storybook/addon-links from 6.2.8 to 6.5.15.

    Release notes

    Sourced from @​storybook/addon-links's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-links's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/theming from 6.2.8 to 6.5.15

    chore(deps-dev): bump @storybook/theming from 6.2.8 to 6.5.15

    Bumps @storybook/theming from 6.2.8 to 6.5.15.

    Release notes

    Sourced from @​storybook/theming's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/theming's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
  • chore(deps-dev): bump @storybook/addon-actions from 6.2.8 to 6.5.15

    chore(deps-dev): bump @storybook/addon-actions from 6.2.8 to 6.5.15

    Bumps @storybook/addon-actions from 6.2.8 to 6.5.15.

    Release notes

    Sourced from @​storybook/addon-actions's releases.

    v6.5.15

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.15-alpha.1

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    v6.5.15-alpha.0

    Maintenance

    • Ember: Remove global Ember usage #17843

    v6.5.14

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    v6.5.14-alpha.2

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    v6.5.14-alpha.1

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    v6.5.14-alpha.0

    Bug Fixes

    • CLI/React native: Fix addons template to import register instead of manager #19620

    ... (truncated)

    Changelog

    Sourced from @​storybook/addon-actions's changelog.

    6.5.15 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.15-alpha.1 (December 20, 2022)

    Bug Fixes

    • Support Angular 15.0.4 #20287
    • CLI: execute automigrations when pressing enter in the prompts #20208

    6.5.15-alpha.0 (December 12, 2022)

    Maintenance

    • Ember: Remove global Ember usage #17843

    6.5.14 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043
    • CLI/React native: Fix addons template to import register instead of manager #19620

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    Dependency Upgrades

    • Upgrade loader-utils to 2.0.4 in storysource and source-loader #19891

    6.5.14-alpha.2 (December 2, 2022)

    Bug Fixes

    • Angular: Fix "webpack_require.nmd is not a function issue" in Angular 15 #20043

    6.5.14-alpha.1 (November 27, 2022)

    Maintenance

    • Core: Patch preview-web and refs to support React Native #19975

    ... (truncated)

    Commits
    • feab19d v6.5.15
    • 075a8dd Update git head to 6.5.15-alpha.1, update yarn.lock [ci skip]
    • cfd775b v6.5.15-alpha.1
    • 9c19ef0 Update git head to 6.5.15-alpha.0, update yarn.lock [ci skip]
    • 095d6ad v6.5.15-alpha.0
    • ae06ca9 Update git head to 6.5.14, update yarn.lock [ci skip]
    • cf65eb7 v6.5.14
    • 6e1e6dd Update git head to 6.5.14-alpha.2, update yarn.lock [ci skip]
    • 71f07c4 v6.5.14-alpha.2
    • 885e7ac Update git head to 6.5.14-alpha.1, update yarn.lock [ci skip]
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 1
Releases(2.0.0-0)
  • 2.0.0-0(Apr 25, 2021)

  • 1.0.1(Mar 18, 2021)

  • 1.0.0-2(Mar 18, 2021)

  • 1.0.0-1(Mar 18, 2021)

    • docs(readme): fix contributors section (09f96ba)
    • Merge pull request #11 from webistomin/all-contributors/add-webistomin (78eed11)
    • docs: create .all-contributorsrc [skip ci] (58803dd)
    • docs: update README.md [skip ci] (3106ffd)
    • fix(css): fix css path and box-sizing property (6e17454)
    Source code(tar.gz)
    Source code(zip)
  • 1.0.0-0(Mar 18, 2021)

    • build(env): add env example (59ee476)
    • docs(readme): update link to project (e284485)
    • docs(mdx): add mdx for component (af56252)
    • docs(readme): add faq section (b4eec9d)
    • docs(readme): add props and events description (579f700)
    • docs(readme): add basic readme template (55a82f3)
    • docs(contributing): update repo name (323c648)
    • test(vuetube): add some tests for component (8be31dd)
    • ci(actions): add tests to ci (d87439b)
    • test(helpers): add tests for helpers (59ff0db)
    • build(css): add css to config (aa96bfd)
    • feat(stories): add new stories for btn and thumb (7221f17)
    • feat(vuetube): remove babel polyfill (c943c1d)
    • feat(vuetube): add api to component (9ab9d8a)
    • feat(vuetube): add youtube api (48868ab)
    • feat(vuetube): add component but without api (f476088)
    • build(vuetube): improve bundling (7162ac1)
    • build(vuetube): add initial files (1a843df)
    Source code(tar.gz)
    Source code(zip)
Owner
Alexey Istomin
Wondering why my code works.
Alexey Istomin
🐌 A small size Vue.js directive for lazy loading images using IntersectionObserver API

?? vue-tiny-lazyload-img A small size Vue.js directive for lazy loading images using IntersectionObserver API Demo Page https://mazipan.github.io/vue-

Irfan Maulana 91 Nov 18, 2021
A Vue.js plugin for lazyload your Image or Component in your application.

Vue-Lazyload Vue module for lazyloading images in your applications. Some of goals of this project worth noting include: Be lightweight, powerful and

Awe 7.8k Dec 29, 2022
Component-based lazy (CLazy) load images in Vue.js 2

Vue Clazy Load Claziest lazy loader out there! Component-based image lazy loader for Vue.js 2 Swaps between your image and another component when load

Matheus Grieger 107 Nov 16, 2022
A simple lazy-load list component based Vue 2.x: https://dwqs.github.io/v2-lazy-list/

v2-lazy-list A simple lazy-load list component based Vue 2.x, which will be on-demand rendering the list based container element's viewport. v1.x is n

Pomy 31 Nov 18, 2020
Flexible modal component for Vue with ability of asynchronous lazy loading

vue-async-modal Flexible modal component for Vue with ability of asynchronous lazy loading Usage Firstly, you should add Modal component in your templ

JounQin 37 Nov 14, 2022
Vue.js Image Kit Component with Lazy Load built in and Responsive Images

Vue Image Kit Vue.js Image Kit Component with Lazy Load built in and Responsive Images The inspiration comes from this and a talk from @derevandal in

Igor Guastalla 9 Mar 31, 2022
A Vue.js component to load an image automatically when it enters the viewport.

A Vue.js component to load an image automatically when it enters the viewport.

Ali Sarfaraz 0 Mar 29, 2020
A Vue.js component to lazy load images using the Intersection Observer.

vue-li-image A Vue.js component to lazy load an image automatically when it enters the viewport using the Intersection Observer API.

null 0 Mar 19, 2021
A Vue/Nuxt component that allows you to lazily render components only when they are scrolled into the viewport.

nuxt-render-on-scroll nuxt-render-on-scroll - A Vue/Nuxt component that allows you to lazily render components only when they are scrolled into the vi

Michael Dell 7 Jun 1, 2022
A vue component for sleek and optimal lazy loading

sloth-loader ?? Image Lazy loader Vue Component with intersection observer Example here Installation yarn add sloth-loader npm i sloth-loader import c

Kenny Krosky 0 Oct 21, 2021
Awesome image component for vue2 & vue3 & nuxt. Lazyload / Responsive / Progressive / WebGL Filter / WebGL Transition / WebP

Awesome image component for vue2 & vue3 & nuxt. Lazyload / Responsive / Progressive / WebGL Filter / WebGL Transition / WebP

Phil Xu 57 Dec 22, 2022
Vue module for lazyloading images in your Vue 3 applications

Vue module for lazy-loading images in your vue 3 applications.

Jambon 23 Nov 4, 2022
Lazy load background images for Vue 2

Lazy Background Images for Vue vue-lazy-background-images A simple Vue component for lazy loading background components. This component is only for ba

Darryn Ten 67 Nov 24, 2022
Vue progressive image loading plugin

vue-progressive-image Vue progressive image loading plugin Installation $ npm install vue-progressive-image Usage import Vue from 'vue' import VueProg

Matteo Gabriele 711 Dec 9, 2022
A lazyload plugin for Vue.js v2.x+.

vue-l-lazyload A lazyload and in-view detection plugin for Vue.js v2.x+. Demo Live demo or npm install vue-l-lazyload && npm run startDev to play it!

Light Leung 26 Mar 9, 2022
A plugin of vue for image lazyload(vue图片懒加载插件)

中文文档看这里 Update v2.1.0 Add requestAnimationFrame polyfill. Now img lazyload detects horizontal direction automatically Imporve perfomence, since the sc

zhaoyenb 252 Nov 21, 2022
simplistic vue.js directive for image lazy loading

Vue Progressive Image Lazy load images while showing a preview. Super tiny, less than half a kilobyte minified and gzipped. usage v-lazy-img adds the

Norman 25 Aug 11, 2021
:camera: Mini Image Lazy Loader for P(R)eact and Vue

Pimg is a Progessive Image Component For React, Preact and Vue.js. It helps in lazy loading of images in a nice and cool way. It's 2KB (gzipped). It h

Ademola. 99 Oct 27, 2022
Vue Plugin for vanilla-lazyload

lazyload-vue Vue Plugin for vanilla-lazyload Build status: features Simple usage with v-lazy-src Accepts options Vue.use(LazyloadVue, options) Multipl

Kazap Tecnologia 29 Jul 14, 2022