Releases: danestves/lite-embed
Releases · danestves/lite-embed
v1.0.4
v1.0.2
v1.0.1
What's Changed
Documentation Changes 📃
- docs: adding twitter meta tags by @danestves in #60
- docs: adding fathom analytics by @danestves in #61
- docs: adding fathom analytics by @danestves in #62
- docs: fix broken overview link by @danestves in #66
- typo: doc's import by @renejfc in #67
- typo: doc's import by @renejfc by @danestves in #68
- docs: add renejfc as a contributor for doc by @allcontributors in #69
- docs: create .all-contributorsrc [skip ci] by @danestves in #70
- chore: using
@lerna-lite
&turbo
instead oflerna
(not maintained) by @danestves in #71 - docs: adding algolia search by @danestves in #73
- docs: adding algolia search by @danestves in #74
Bug Fixes 🐛
- fix: remove youtube gradient on loaded by @danestves in #72
Other Changes 🤷♂️
- sync: main by @danestves in #63
- [ImgBot] Optimize images by @imgbot in #64
- [ImgBot] Optimize images by @danestves in #65
New Contributors
- @renejfc made their first contribution in #67
- @allcontributors made their first contribution in #69
Full Changelog: v1.0.0...v1.0.1
v1.0.1-canary.0
What's Changed
Documentation Changes 📃
- docs: adding twitter meta tags by @danestves in #60
- docs: adding fathom analytics by @danestves in #61
- docs: adding fathom analytics by @danestves in #62
- docs: fix broken overview link by @danestves in #66
- typo: doc's import by @renejfc in #67
- typo: doc's import by @renejfc by @danestves in #68
- docs: add renejfc as a contributor for doc by @allcontributors in #69
- docs: create .all-contributorsrc [skip ci] by @danestves in #70
- chore: using
@lerna-lite
&turbo
instead oflerna
(not maintained) by @danestves in #71
Bug Fixes 🐛
- fix: remove youtube gradient on loaded by @danestves in #72
Other Changes 🤷♂️
- [ImgBot] Optimize images by @imgbot in #64
- [ImgBot] Optimize images by @danestves in #65
New Contributors
- @renejfc made their first contribution in #67
- @allcontributors made their first contribution in #69
Full Changelog: v1.0.0...v1.0.1-canary.0
v1.0.0
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: v1.0.0-canary.7...v1.0.0
v1.0.0-canary.7
What's Changed
Features 🎉
- feat: umd targets for vue and utils by @danestves in #58
Full Changelog: v1.0.0-canary.6...v1.0.0-canary.7
v1.0.0-canary.6
What's Changed
Features 🎉
- feat: classes to style vue components by @danestves in #57
Full Changelog: v1.0.0-canary.5...v1.0.0-canary.6
v1.0.0-canary.5
What's Changed
Bug Fixes 🐛
- fix: center icon of Vimeo button by @danestves in #56
Full Changelog: v1.0.0-canary.4...v1.0.0-canary.5
v1.0.0-canary.4
What's Changed
Bug Fixes 🐛
- fix: center position of youtube icon by @danestves in #54
Full Changelog: v1.0.0-canary.3...v1.0.0-canary.4
v1.0.0-canary.3
What's Changed
Documentation Changes 📃
- feat: init docs by @danestves in #49
- ci: adding step to know if is docs only change by @danestves in #50
- docs: using nextra as a docs generator by @danestves in #52
Features 🎉
- test: using fetch only for test files by @danestves in #53
Other Changes 🤷♂️
New Contributors
Full Changelog: v1.0.0-canary.2...v1.0.0-canary.3