Skip to content
Docs
/
Changelog

Changelog

Please visit the lite-embed release page for all history releases.

v1.0.1-canary.0

Published on Thu Apr 28 2022.

What's Changed

Documentation Changes 📃

New Contributors

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0...v1.0.1-canary.0

v1.0.0

Published on Mon Apr 25 2022.

Welcome to the first release of lite-embed 🎉

In this release, we add support for React and Vue to embed YouTube and Vimeo videos on a website without hustle, let me show you some examples 👇 :

React

import { Vimeo, YoutubeLite } from '@lite-embed/react';

export default function App() {
  return (
    <>
      <VimeoLite urlOrId="https://vimeo.com/476064230" />

      <YoutubeLite urlOrId="https://www.youtube.com/watch?v=dQw4w9WgXcQ" />
    </>
  );
}

Vue

<script setup lang="ts">
import { VimeoLite, YoutubeLite } from '@lite-embed/vue';
</script>

<template>
  <div>
    <vimeo-lite url-or-id="https://vimeo.com/476064230"></vimeo-lite>

    <youtube-lite
      url-or-id="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
    ></youtube-lite>
  </div>
</template>

Please visit https://lite-embed.vercel.app/docs to view the full documentation

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0-canary.7...v1.0.0

v1.0.0-canary.7

Published on Tue Apr 05 2022.

What's Changed

Features 🎉

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0-canary.6...v1.0.0-canary.7

v1.0.0-canary.6

Published on Mon Apr 04 2022.

What's Changed

Features 🎉

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0-canary.5...v1.0.0-canary.6

v1.0.0-canary.5

Published on Mon Apr 04 2022.

What's Changed

Bug Fixes 🐛

Full Changelog: https://github.com/danestves/lite-embed/compare/v1.0.0-canary.4...v1.0.0-canary.5