sveltekit-ui 1.0.6 → 1.0.7

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.
@@ -163,6 +163,8 @@
163
163
  <YoutubeChannelButtonShowcase />
164
164
  {:else if page?.params?.component == "youtube_video"}
165
165
  <YoutubeVideoShowcase />
166
+ {:else}
167
+ <p>Component not found</p>
166
168
  {/if}
167
169
  {#if definitions?.[page?.params?.component]}
168
170
  <DocsDefinition definition={definitions?.[page?.params?.component]} />
@@ -64,14 +64,14 @@
64
64
  db_epoch_created: 1697241860,
65
65
  })
66
66
 
67
- // let function_manager = create_function_manager({
68
- // name: example_page_data?.name,
69
- // description: example_page_data?.description,
70
- // structure: example_page_data?.structure,
71
- // })
67
+ let function_manager = create_function_manager({
68
+ name: example_page_data?.name,
69
+ description: example_page_data?.description,
70
+ structure: example_page_data?.structure,
71
+ })
72
72
  </script>
73
73
 
74
74
  <div>
75
75
  <p>Revisit in future</p>
76
- <!-- <FunctionInput manager={function_manager} /> -->
76
+ <FunctionInput manager={function_manager} />
77
77
  </div>