sveltekit-ui 1.0.87 → 1.0.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sveltekit-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.88",
|
|
4
4
|
"description": "A SvelteKit UI component library for building modern web applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"context-filter-polyfill": "^0.3.23",
|
|
21
21
|
"qr-code-styling": "^1.9.2",
|
|
22
|
-
"svelte": "^5.
|
|
22
|
+
"svelte": "^5.41.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@sveltejs/kit": "^2.22.2"
|
package/src/routes/+page.svelte
CHANGED
|
@@ -3,6 +3,8 @@
|
|
|
3
3
|
import { create_content_manager } from "$lib/Components/Content/index.svelte.js"
|
|
4
4
|
import Button from "$lib/Components/Button/index.svelte"
|
|
5
5
|
import { create_button_manager } from "$lib/Components/Button/index.svelte.js"
|
|
6
|
+
import YoutubeVideo from "$lib/Components/YoutubeVideo/index.svelte"
|
|
7
|
+
import { create_youtube_video_manager } from "$lib/Components/YoutubeVideo/index.svelte.js"
|
|
6
8
|
import { goto } from "$app/navigation"
|
|
7
9
|
import { definitions, docs_definition_to_sample_code, docs_overview_code_sample } from "$lib/client/docs/index.js"
|
|
8
10
|
import { copy_to_clipboard } from "$lib/client/index.js"
|
|
@@ -263,9 +265,16 @@ below are the docs for each component individually
|
|
|
263
265
|
copy_to_clipboard(overview + JSON.stringify(docs_prepped))
|
|
264
266
|
},
|
|
265
267
|
})
|
|
268
|
+
|
|
269
|
+
let youtube_video_manager = create_youtube_video_manager({
|
|
270
|
+
video_id: "Ic_FgSQYdj8",
|
|
271
|
+
})
|
|
266
272
|
</script>
|
|
267
273
|
|
|
268
274
|
<div class="container">
|
|
275
|
+
<div style="max-width: 700px;">
|
|
276
|
+
<YoutubeVideo manager={youtube_video_manager} />
|
|
277
|
+
</div>
|
|
269
278
|
<Content manager={content_manager} />
|
|
270
279
|
<Button manager={button_manager} />
|
|
271
280
|
<Button manager={copy_all_docs_button_manager} />
|
|
@@ -3,10 +3,8 @@
|
|
|
3
3
|
import { create_youtube_video_manager } from "$lib/Components/YoutubeVideo/index.svelte.js"
|
|
4
4
|
|
|
5
5
|
let youtube_video_manager = create_youtube_video_manager({
|
|
6
|
-
video_id: "L8YefjVWWTo
|
|
6
|
+
video_id: "L8YefjVWWTo",
|
|
7
7
|
})
|
|
8
|
-
|
|
9
|
-
// https://youtu.be/L8YefjVWWTo?si=Q9Adtj9p-iOZqS_-
|
|
10
8
|
</script>
|
|
11
9
|
|
|
12
10
|
<div>
|