Skip to content

Commit

Permalink
change(emoji-mart-website): use slido packages, not missive
Browse files Browse the repository at this point in the history
  • Loading branch information
JanPodmajersky committed Jun 18, 2024
1 parent 8d3d7c7 commit abb026b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/example-categories.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
<script type="module">
import data from '@emoji-mart/data'
import { Picker } from 'emoji-mart'
import { Picker } from '@slidoapp/emoji-mart'

new Picker({
parent: document.querySelector('#picker'),
Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/example-custom-font.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<block name="script">
<script type="module">
import data from '@emoji-mart/data/sets/13.1/native.json'
import { Picker } from 'emoji-mart'
import { Picker } from '@slidoapp/emoji-mart'

new Picker({
parent: document.querySelector('#picker'),
Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/example-custom-styles.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<block name="script">
<script type="module">
import data from '@emoji-mart/data'
import { Picker } from 'emoji-mart'
import { Picker } from '@slidoapp/emoji-mart'

new Picker({
parent: document.querySelector('#picker'),
Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/example-dynamic-width.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</style>
<script type="module">
import data from '@emoji-mart/data'
import { Picker } from 'emoji-mart'
import { Picker } from '@slidoapp/emoji-mart'

new Picker({
parent: document.querySelector('#picker'),
Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/example-emoji-component.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</div>
<script type="module">
import data from '@emoji-mart/data/sets/15/twitter.json'
import { init } from 'emoji-mart'
import { init } from '@slidoapp/emoji-mart'

init({
data,
Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/example-headless-search.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<block name="script">
<script type="module">
import data from '@emoji-mart/data'
import { init, SearchIndex } from 'emoji-mart'
import { init, SearchIndex } from '@slidoapp/emoji-mart'

init({ data })

Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/example-slack-colors.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<block name="script">
<script type="module">
import data from '@emoji-mart/data'
import { Picker } from 'emoji-mart'
import { Picker } from '@slidoapp/emoji-mart'

new Picker({
parent: document.querySelector('#picker'),
Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<block name="script">
<script type="module">
import data from '@emoji-mart/data'
import { init } from 'emoji-mart'
import { init } from '@slidoapp/emoji-mart'

init({ data })
</script>
Expand Down
2 changes: 1 addition & 1 deletion packages/emoji-mart-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
</div>
<script type="module">
import data from '@emoji-mart/data'
import * as EmojiMart from 'emoji-mart'
import * as EmojiMart from '@slidoapp/emoji-mart'
window.EmojiMart = EmojiMart

const reset = document.querySelector('#reset')
Expand Down

0 comments on commit abb026b

Please sign in to comment.