Skip to content

Commit 886e42e

Browse files
committed
feat: update ShellUI version and add shellui-js component to registry
Bumped the ShellUI version suffix to alpha.3 and included the new shellui-js component in the ComponentRegistry, enhancing the component library with additional functionality.
1 parent d92ab38 commit 886e42e

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- Centralized ShellUI Version - Update this single file to version all components -->
44
<PropertyGroup>
55
<ShellUIVersion>0.3.0</ShellUIVersion>
6-
<ShellUIVersionSuffix>alpha.2</ShellUIVersionSuffix>
6+
<ShellUIVersionSuffix>alpha.3</ShellUIVersionSuffix>
77
</PropertyGroup>
88

99
<!-- Common properties for all ShellUI projects -->

src/ShellUI.Templates/ComponentRegistry.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ public static class ComponentRegistry
88
public static readonly Dictionary<string, ComponentMetadata> Components = new()
99
{
1010
{ "shell", ShellTemplate.Metadata },
11+
{ "shellui-js", ShellUIJsTemplate.Metadata },
1112
{ "button", ButtonTemplate.Metadata },
1213
{ "button-variants", ButtonVariantsTemplate.Metadata },
1314
{ "theme-toggle", ThemeToggleTemplate.Metadata },
@@ -177,6 +178,7 @@ public static class ComponentRegistry
177178
return componentName.ToLower() switch
178179
{
179180
"shell" => ShellTemplate.Content,
181+
"shellui-js" => ShellUIJsTemplate.Content,
180182
"button" => ButtonTemplate.Content,
181183
"button-variants" => ButtonVariantsTemplate.Content,
182184
"theme-toggle" => ThemeToggleTemplate.Content,

0 commit comments

Comments
 (0)