@lumeo-ui/mcp-server 2.0.0-rc.36 → 2.0.0-rc.38
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 +1 -1
- package/src/components-api.json +176 -26
- package/src/registry.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumeo-ui/mcp-server",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.38",
|
|
4
4
|
"description": "Model Context Protocol server for the Lumeo Blazor component library. Lets LLMs (Claude, Copilot, Cursor) author correct Lumeo markup.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
package/src/components-api.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/components-api-schema.json",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
4
|
-
"generated": "2026-05-
|
|
3
|
+
"version": "2.0.0-rc.38",
|
|
4
|
+
"generated": "2026-05-13T07:19:07.9817901Z",
|
|
5
5
|
"stats": {
|
|
6
6
|
"componentCount": 145,
|
|
7
|
-
"totalParameters":
|
|
7
|
+
"totalParameters": 3438,
|
|
8
8
|
"totalEnums": 101,
|
|
9
|
-
"totalRecords":
|
|
9
|
+
"totalRecords": 58,
|
|
10
10
|
"thinFallbacks": []
|
|
11
11
|
},
|
|
12
12
|
"themeTokens": [
|
|
@@ -519,6 +519,10 @@
|
|
|
519
519
|
{
|
|
520
520
|
"title": "Multiple",
|
|
521
521
|
"code": "<Accordion Type=\"Accordion.AccordionType.Multiple\">\r\n <AccordionItem Value=\"item-1\">\r\n <AccordionTrigger>What is Lumeo?</AccordionTrigger>\r\n <AccordionContent>Lumeo is a Blazor component library inspired by shadcn/ui, built with Tailwind CSS.</AccordionContent>\r\n </AccordionItem>\r\n <AccordionItem Value=\"item-2\">\r\n <AccordionTrigger>Which .NET version?</AccordionTrigger>\r\n <AccordionContent>Lumeo targets .NET 10 and uses Tailwind CSS v4 for styling.</AccordionContent>\r\n </AccordionItem>\r\n <AccordionItem Value=\"item-3\">\r\n <AccordionTrigger>Can I customize it?</AccordionTrigger>\r\n <AccordionContent>Absolutely. All components accept a Class parameter for additional CSS classes.</AccordionContent>\r\n </AccordionItem>\r\n</Accordion>"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"title": "Type — interactive",
|
|
525
|
+
"code": "<Segmented @bind-Value=\"_accordionTypeSel\" Options=\"_accordionTypeOptions\" />\r\n<Accordion Type=\"@_activeAccordionType\">\r\n <AccordionItem Value=\"a\">\r\n <AccordionTrigger>Is it accessible?</AccordionTrigger>\r\n <AccordionContent>Yes. It adheres to the WAI-ARIA design pattern.</AccordionContent>\r\n </AccordionItem>\r\n <AccordionItem Value=\"b\">\r\n <AccordionTrigger>Is it styled?</AccordionTrigger>\r\n <AccordionContent>Yes. It comes with default styles.</AccordionContent>\r\n </AccordionItem>\r\n <AccordionItem Value=\"c\">\r\n <AccordionTrigger>Is it animated?</AccordionTrigger>\r\n <AccordionContent>Yes. Animated by default.</AccordionContent>\r\n </AccordionItem>\r\n</Accordion>\r\n\r\n@code {\r\n private string _accordionTypeSel = \"Single\";\r\n private Accordion.AccordionType _activeAccordionType => Enum.Parse<Accordion.AccordionType>(_accordionTypeSel);\r\n private List<Segmented.SegmentedOption> _accordionTypeOptions = new()\r\n {\r\n new() { Label = \"Single\", Value = \"Single\" },\r\n new() { Label = \"Multiple\", Value = \"Multiple\" },\r\n };\r\n}"
|
|
522
526
|
}
|
|
523
527
|
],
|
|
524
528
|
"subComponents": {
|
|
@@ -1866,6 +1870,10 @@
|
|
|
1866
1870
|
"title": "With Search",
|
|
1867
1871
|
"code": "<AppBar>\n <StartContent>\n <Lumeo.Text Size=\"sm\" Weight=\"semibold\">Dashboard</Lumeo.Text>\n </StartContent>\n <ChildContent>\n <Input Placeholder=\"Search...\" Class=\"max-w-xs h-8 text-sm\" />\n </ChildContent>\n <EndContent>\n <Button Variant=\"Button.ButtonVariant.Ghost\" Size=\"Button.ButtonSize.Sm\">\n <Blazicon Svg=\"Lucide.Bell\" class=\"h-4 w-4\" />\n </Button>\n <Avatar><AvatarFallback>JD</AvatarFallback></Avatar>\n </EndContent>\n</AppBar>"
|
|
1868
1872
|
},
|
|
1873
|
+
{
|
|
1874
|
+
"title": "Appearance toggles — interactive",
|
|
1875
|
+
"code": "<Switch @bind-Checked=\"_elevated\" />\n<Switch @bind-Checked=\"_bordered\" />\n<AppBar Elevated=\"@_elevated\" Bordered=\"@_bordered\">\n <StartContent>\n <Lumeo.Text Size=\"sm\" Weight=\"semibold\">My App</Lumeo.Text>\n </StartContent>\n <EndContent>\n <Button Variant=\"Button.ButtonVariant.Ghost\" Size=\"Button.ButtonSize.Sm\">Sign In</Button>\n <Button Size=\"Button.ButtonSize.Sm\">Get Started</Button>\n </EndContent>\n</AppBar>\n\n@code {\n private bool _elevated = false;\n private bool _bordered = true;\n}"
|
|
1876
|
+
},
|
|
1869
1877
|
{
|
|
1870
1878
|
"title": "Elevated (no border)",
|
|
1871
1879
|
"code": "<AppBar Elevated=\"true\" Bordered=\"false\">\n <StartContent>\n <Lumeo.Text Size=\"sm\" Weight=\"semibold\">My App</Lumeo.Text>\n </StartContent>\n <EndContent>\n <Button Variant=\"Button.ButtonVariant.Ghost\" Size=\"Button.ButtonSize.Sm\">\n <Blazicon Svg=\"Lucide.Settings\" class=\"h-4 w-4\" />\n </Button>\n </EndContent>\n</AppBar>"
|
|
@@ -1939,6 +1947,10 @@
|
|
|
1939
1947
|
{
|
|
1940
1948
|
"title": "Media Card",
|
|
1941
1949
|
"code": "<Card>\r\n <AspectRatio Ratio=\"16.0 / 9.0\" Class=\"rounded-t-lg overflow-hidden bg-muted\">\r\n <div class=\"flex items-center justify-center h-full text-muted-foreground\">\r\n Thumbnail\r\n </div>\r\n </AspectRatio>\r\n <CardContent Class=\"p-4\">\r\n <Lumeo.Text Weight=\"semibold\">Getting Started with Lumeo</Lumeo.Text>\r\n <Lumeo.Text Size=\"sm\" Color=\"muted\" Class=\"mt-1\">Learn how to build beautiful UIs.</Lumeo.Text>\r\n </CardContent>\r\n</Card>"
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
"title": "Ratio — interactive",
|
|
1953
|
+
"code": "<AspectRatio Ratio=\"16.0 / 9.0\" Class=\"rounded-md overflow-hidden bg-muted\">\r\n <div class=\"flex items-center justify-center h-full text-sm text-muted-foreground\">16:9</div>\r\n</AspectRatio>"
|
|
1942
1954
|
}
|
|
1943
1955
|
],
|
|
1944
1956
|
"subComponents": {},
|
|
@@ -2433,6 +2445,10 @@
|
|
|
2433
2445
|
"title": "Variants",
|
|
2434
2446
|
"code": "<Badge>Default</Badge>\r\n<Badge Variant=\"Badge.BadgeVariant.Secondary\">Secondary</Badge>\r\n<Badge Variant=\"Badge.BadgeVariant.Outline\">Outline</Badge>\r\n<Badge Variant=\"Badge.BadgeVariant.Destructive\">Destructive</Badge>\r\n<Badge Variant=\"Badge.BadgeVariant.Success\">Success</Badge>\r\n<Badge Variant=\"Badge.BadgeVariant.Warning\">Warning</Badge>"
|
|
2435
2447
|
},
|
|
2448
|
+
{
|
|
2449
|
+
"title": "Variant (interactive)",
|
|
2450
|
+
"code": "<Segmented @bind-Value=\"_variant\">\r\n <SegmentedItem Value=\"@Badge.BadgeVariant.Default\">Default</SegmentedItem>\r\n <SegmentedItem Value=\"@Badge.BadgeVariant.Secondary\">Secondary</SegmentedItem>\r\n <SegmentedItem Value=\"@Badge.BadgeVariant.Outline\">Outline</SegmentedItem>\r\n <SegmentedItem Value=\"@Badge.BadgeVariant.Destructive\">Destructive</SegmentedItem>\r\n <SegmentedItem Value=\"@Badge.BadgeVariant.Success\">Success</SegmentedItem>\r\n <SegmentedItem Value=\"@Badge.BadgeVariant.Warning\">Warning</SegmentedItem>\r\n</Segmented>\r\n<Badge Variant=\"@_variant\">@_variant.ToString()</Badge>\r\n\r\n@code { private Badge.BadgeVariant _variant = Badge.BadgeVariant.Default; }"
|
|
2451
|
+
},
|
|
2436
2452
|
{
|
|
2437
2453
|
"title": "Usage Examples",
|
|
2438
2454
|
"code": "<Flex Align=\"center\" Gap=\"2\">\r\n <Lumeo.Text As=\"span\" Size=\"sm\" Weight=\"medium\">Status</Lumeo.Text>\r\n <Badge Variant=\"Badge.BadgeVariant.Success\">Active</Badge>\r\n</Flex>\r\n<Flex Align=\"center\" Gap=\"2\">\r\n <Lumeo.Text As=\"span\" Size=\"sm\" Weight=\"medium\">Priority</Lumeo.Text>\r\n <Badge Variant=\"Badge.BadgeVariant.Destructive\">High</Badge>\r\n</Flex>"
|
|
@@ -2440,10 +2456,6 @@
|
|
|
2440
2456
|
{
|
|
2441
2457
|
"title": "In a Card",
|
|
2442
2458
|
"code": "<Card>\r\n <CardHeader>\r\n <Flex Align=\"center\" Justify=\"between\">\r\n <Heading Level=\"3\" Size=\"lg\">Notifications</Heading>\r\n <Badge>3 new</Badge>\r\n </Flex>\r\n <Lumeo.Text Size=\"sm\" Color=\"muted\">You have unread messages.</Lumeo.Text>\r\n </CardHeader>\r\n</Card>"
|
|
2443
|
-
},
|
|
2444
|
-
{
|
|
2445
|
-
"title": "Dot Badge",
|
|
2446
|
-
"code": "<Stack Class=\"relative\">\r\n <Blazicon Svg=\"Lucide.Bell\" class=\"h-5 w-5\" />\r\n <Badge IsDot=\"true\" Class=\"absolute -top-1 -right-1\" />\r\n</Stack>\r\n<Stack Class=\"relative\">\r\n <Blazicon Svg=\"Lucide.Mail\" class=\"h-5 w-5\" />\r\n <Badge IsDot=\"true\" Variant=\"Badge.BadgeVariant.Destructive\" Class=\"absolute -top-1 -right-1\" />\r\n</Stack>"
|
|
2447
2459
|
}
|
|
2448
2460
|
],
|
|
2449
2461
|
"subComponents": {},
|
|
@@ -2656,6 +2668,10 @@
|
|
|
2656
2668
|
"title": "Basic 4-column bento",
|
|
2657
2669
|
"code": "<Bento Columns=\"4\" Gap=\"Bento.BentoGap.Md\">\r\n <BentoTile Span=\"2\" Title=\"Revenue\" Description=\"Last 30 days\">\r\n <div class=\"text-3xl font-semibold text-foreground\">$48,290</div>\r\n </BentoTile>\r\n <BentoTile Title=\"New users\"><div class=\"text-2xl font-semibold\">1,204</div></BentoTile>\r\n <BentoTile Title=\"Churn\"><div class=\"text-2xl font-semibold\">2.1%</div></BentoTile>\r\n <BentoTile Span=\"2\" Title=\"Latest activity\" Description=\"Feed\">\r\n <div class=\"text-sm text-muted-foreground\">No events in the last hour.</div>\r\n </BentoTile>\r\n <BentoTile Title=\"Sessions\"><div class=\"text-2xl font-semibold\">8,492</div></BentoTile>\r\n <BentoTile Title=\"Avg. duration\"><div class=\"text-2xl font-semibold\">4m 12s</div></BentoTile>\r\n</Bento>"
|
|
2658
2670
|
},
|
|
2671
|
+
{
|
|
2672
|
+
"title": "Gap (interactive)",
|
|
2673
|
+
"code": "<Segmented @bind-Value=\"_gap\">\r\n <SegmentedItem Value=\"@Bento.BentoGap.Sm\">Sm</SegmentedItem>\r\n <SegmentedItem Value=\"@Bento.BentoGap.Md\">Md</SegmentedItem>\r\n <SegmentedItem Value=\"@Bento.BentoGap.Lg\">Lg</SegmentedItem>\r\n</Segmented>\r\n<Bento Columns=\"4\" Gap=\"@_gap\">\r\n <BentoTile Title=\"Revenue\"><div class=\"text-2xl font-semibold\">$48,290</div></BentoTile>\r\n <BentoTile Title=\"Users\"><div class=\"text-2xl font-semibold\">12,402</div></BentoTile>\r\n <BentoTile Title=\"Sessions\"><div class=\"text-2xl font-semibold\">8,492</div></BentoTile>\r\n <BentoTile Title=\"Churn\"><div class=\"text-2xl font-semibold\">2.1%</div></BentoTile>\r\n</Bento>\r\n\r\n@code { private Bento.BentoGap _gap = Bento.BentoGap.Md; }"
|
|
2674
|
+
},
|
|
2659
2675
|
{
|
|
2660
2676
|
"title": "Dashboard — KPI row + spark + wide tile",
|
|
2661
2677
|
"code": "<Bento Columns=\"3\" Gap=\"Bento.BentoGap.Md\">\r\n <KpiCard Label=\"Revenue\" Value=\"$48,290\" Delta=\"12.3\" />\r\n <KpiCard Label=\"Active users\" Value=\"12,402\" Delta=\"4.8\" />\r\n <KpiCard Label=\"MRR\" Value=\"$9,820\" Delta=\"-1.2\" />\r\n</Bento>\r\n<Bento Columns=\"3\" Gap=\"Bento.BentoGap.Md\">\r\n <SparkCard Label=\"Page views\" Value=\"184k\" Data=\"@sparkA\" />\r\n <SparkCard Label=\"Signups\" Value=\"421\" Data=\"@sparkB\" />\r\n <BentoTile Title=\"Traffic\" Description=\"Last 7 days\">\r\n <Chart ... />\r\n </BentoTile>\r\n</Bento>"
|
|
@@ -4388,6 +4404,10 @@
|
|
|
4388
4404
|
"title": "With Loop",
|
|
4389
4405
|
"code": "<Carousel Loop=\"true\">\r\n <CarouselContent>\r\n @for (var i = 1; i <= 5; i++)\r\n {\r\n var index = i;\r\n <CarouselItem>\r\n <div class=\"p-1\">\r\n <Card>\r\n <CardContent Class=\"flex aspect-square items-center justify-center p-6\">\r\n <span class=\"text-4xl font-semibold\">@index</span>\r\n </CardContent>\r\n </Card>\r\n </div>\r\n </CarouselItem>\r\n }\r\n </CarouselContent>\r\n <CarouselPrevious />\r\n <CarouselNext />\r\n</Carousel>"
|
|
4390
4406
|
},
|
|
4407
|
+
{
|
|
4408
|
+
"title": "Orientation — interactive",
|
|
4409
|
+
"code": "<Segmented @bind-Value=\"_orientationSel\" Options=\"_orientationOptions\" />\r\n<Carousel Orientation=\"@(Enum.Parse<Carousel.CarouselOrientation>(_orientationSel))\">\r\n <CarouselContent>\r\n @for (var i = 1; i <= 4; i++) {\r\n var index = i;\r\n <CarouselItem>\r\n <Card>\r\n <CardContent Class=\"flex aspect-square items-center justify-center p-6\">\r\n <span class=\"text-4xl font-semibold\">@index</span>\r\n </CardContent>\r\n </Card>\r\n </CarouselItem>\r\n }\r\n </CarouselContent>\r\n <CarouselPrevious />\r\n <CarouselNext />\r\n</Carousel>\r\n\r\n@code {\r\n private string _orientationSel = \"Horizontal\";\r\n private List<Segmented.SegmentedOption> _orientationOptions = new()\r\n {\r\n new() { Label = \"Horizontal\", Value = \"Horizontal\" },\r\n new() { Label = \"Vertical\", Value = \"Vertical\" },\r\n };\r\n}"
|
|
4410
|
+
},
|
|
4391
4411
|
{
|
|
4392
4412
|
"title": "Product Gallery",
|
|
4393
4413
|
"code": "<Carousel>\r\n <CarouselContent>\r\n @foreach (var product in _products)\r\n {\r\n <CarouselItem>\r\n <div class=\"p-1\">\r\n <Card>\r\n <AspectRatio Ratio=\"4.0 / 3.0\" Class=\"rounded-t-lg overflow-hidden bg-muted\">\r\n <div class=\"flex items-center justify-center h-full text-sm text-muted-foreground\">@product.Category</div>\r\n </AspectRatio>\r\n <CardContent Class=\"p-4\">\r\n <Lumeo.Text Size=\"sm\" Weight=\"semibold\">@product.Name</Lumeo.Text>\r\n <Lumeo.Text Size=\"sm\" Color=\"muted\">@product.Price</Lumeo.Text>\r\n </CardContent>\r\n </Card>\r\n </div>\r\n </CarouselItem>\r\n }\r\n </CarouselContent>\r\n <CarouselPrevious />\r\n <CarouselNext />\r\n</Carousel>"
|
|
@@ -12969,6 +12989,10 @@
|
|
|
12969
12989
|
{
|
|
12970
12990
|
"title": "Custom Size",
|
|
12971
12991
|
"code": "<Code Size=\"xs\">text-xs code</Code>\n<Code Size=\"base\">text-base code</Code>\n<Code Size=\"lg\">text-lg code</Code>"
|
|
12992
|
+
},
|
|
12993
|
+
{
|
|
12994
|
+
"title": "Variant — interactive",
|
|
12995
|
+
"code": "@* inline — pill-styled within text *@\n<Code Variant=\"inline\">dotnet add package Lumeo</Code>\n\n@* block — full-width scrollable code block *@\n<Code Variant=\"block\">dotnet add package Lumeo</Code>"
|
|
12972
12996
|
}
|
|
12973
12997
|
],
|
|
12974
12998
|
"subComponents": {},
|
|
@@ -14747,6 +14771,10 @@
|
|
|
14747
14771
|
{
|
|
14748
14772
|
"title": "Different Max Widths",
|
|
14749
14773
|
"code": "<Container MaxWidth=\"sm\">Small container</Container>\r\n<Container MaxWidth=\"md\">Medium container</Container>\r\n<Container MaxWidth=\"lg\">Large container</Container>\r\n<Container MaxWidth=\"xl\">Extra large container</Container>"
|
|
14774
|
+
},
|
|
14775
|
+
{
|
|
14776
|
+
"title": "MaxWidth — interactive",
|
|
14777
|
+
"code": "<Container MaxWidth=\"lg\">\r\n Content constrained to max-w-lg\r\n</Container>"
|
|
14750
14778
|
}
|
|
14751
14779
|
],
|
|
14752
14780
|
"subComponents": {},
|
|
@@ -19787,8 +19815,8 @@
|
|
|
19787
19815
|
"code": "<Drawer @bind-Open=\"_preventDrawerOpen\">\r\n <DrawerTrigger>\r\n <Button Variant=\"Button.ButtonVariant.Outline\">Open Protected Drawer</Button>\r\n </DrawerTrigger>\r\n <DrawerContent PreventClose=\"true\">\r\n <DrawerHeader>\r\n <DrawerTitle>Confirm Action</DrawerTitle>\r\n <DrawerDescription>You must choose an option to continue.</DrawerDescription>\r\n </DrawerHeader>\r\n <Stack Gap=\"2\" Class=\"p-4\">\r\n <Button Class=\"w-full\" OnClick=\"@(() => _preventDrawerOpen = false)\">Confirm</Button>\r\n <Button Variant=\"Button.ButtonVariant.Outline\" Class=\"w-full\" OnClick=\"@(() => _preventDrawerOpen = false)\">Cancel</Button>\r\n </Stack>\r\n </DrawerContent>\r\n</Drawer>\r\n\r\n@code {\r\n private bool _preventDrawerOpen;\r\n}"
|
|
19788
19816
|
},
|
|
19789
19817
|
{
|
|
19790
|
-
"title": "
|
|
19791
|
-
"code": "<Drawer @bind-Open=\"
|
|
19818
|
+
"title": "Side — interactive",
|
|
19819
|
+
"code": "<Segmented @bind-Value=\"_drawerSideSel\" Options=\"_drawerSideOptions\" />\r\n<Drawer @bind-Open=\"_open\">\r\n <DrawerTrigger>\r\n <Button Variant=\"Button.ButtonVariant.Outline\">Open Drawer (@_drawerSideSel)</Button>\r\n </DrawerTrigger>\r\n <DrawerContent Side=\"@_activeDrawerSide\">\r\n <DrawerHeader>\r\n <DrawerTitle>@_drawerSideSel Drawer</DrawerTitle>\r\n <DrawerDescription>Slides in from the @_drawerSideSel.ToLower().</DrawerDescription>\r\n </DrawerHeader>\r\n <DrawerFooter>\r\n <DrawerClose><Button Class=\"w-full\">Close</Button></DrawerClose>\r\n </DrawerFooter>\r\n </DrawerContent>\r\n</Drawer>\r\n\r\n@code {\r\n private string _drawerSideSel = \"Bottom\";\r\n private DrawerContent.DrawerSide _activeDrawerSide => Enum.Parse<DrawerContent.DrawerSide>(_drawerSideSel);\r\n private List<Segmented.SegmentedOption> _drawerSideOptions = new()\r\n {\r\n new() { Label = \"Top\", Value = \"Top\" },\r\n new() { Label = \"Right\", Value = \"Right\" },\r\n new() { Label = \"Bottom\", Value = \"Bottom\" },\r\n new() { Label = \"Left\", Value = \"Left\" },\r\n };\r\n}"
|
|
19792
19820
|
}
|
|
19793
19821
|
],
|
|
19794
19822
|
"subComponents": {
|
|
@@ -22469,6 +22497,10 @@
|
|
|
22469
22497
|
{
|
|
22470
22498
|
"title": "Different Gaps",
|
|
22471
22499
|
"code": "<Grid Columns=\"3\" RowGap=\"6\" ColGap=\"2\">\r\n <div>1</div>\r\n <div>2</div>\r\n <!-- ... -->\r\n</Grid>"
|
|
22500
|
+
},
|
|
22501
|
+
{
|
|
22502
|
+
"title": "Columns — interactive",
|
|
22503
|
+
"code": "<Grid Columns=\"4\" Gap=\"3\">\r\n @for (var i = 1; i <= 12; i++)\r\n {\r\n <div>@i</div>\r\n }\r\n</Grid>"
|
|
22472
22504
|
}
|
|
22473
22505
|
],
|
|
22474
22506
|
"subComponents": {},
|
|
@@ -22563,6 +22595,10 @@
|
|
|
22563
22595
|
{
|
|
22564
22596
|
"title": "Tracking",
|
|
22565
22597
|
"code": "<Heading Level=\"1\">Default tight tracking</Heading>\r\n<Heading Level=\"1\" Tracking=\"normal\">Normal tracking</Heading>\r\n<Heading Level=\"1\" Tracking=\"wide\">Wide tracking</Heading>"
|
|
22598
|
+
},
|
|
22599
|
+
{
|
|
22600
|
+
"title": "Level — interactive",
|
|
22601
|
+
"code": "<Heading Level=\"2\">This is a level 2 heading</Heading>"
|
|
22566
22602
|
}
|
|
22567
22603
|
],
|
|
22568
22604
|
"subComponents": {},
|
|
@@ -23333,12 +23369,12 @@
|
|
|
23333
23369
|
"code": "<ImageCompare BeforeSrc=\"img1.jpg\" AfterSrc=\"img2.jpg\"\r\n Orientation=\"ImageCompare.ImageCompareOrientation.Vertical\"\r\n Height=\"320px\" />"
|
|
23334
23370
|
},
|
|
23335
23371
|
{
|
|
23336
|
-
"title": "
|
|
23337
|
-
"code": "<ImageCompare BeforeSrc=\"before.jpg\" AfterSrc=\"after.jpg\"\r\n
|
|
23372
|
+
"title": "Orientation (interactive)",
|
|
23373
|
+
"code": "<Segmented @bind-Value=\"_orientation\">\r\n <SegmentedItem Value=\"@ImageCompare.ImageCompareOrientation.Horizontal\">Horizontal</SegmentedItem>\r\n <SegmentedItem Value=\"@ImageCompare.ImageCompareOrientation.Vertical\">Vertical</SegmentedItem>\r\n</Segmented>\r\n<ImageCompare BeforeSrc=\"before.jpg\" AfterSrc=\"after.jpg\"\r\n BeforeLabel=\"Before\" AfterLabel=\"After\"\r\n Orientation=\"@_orientation\" Height=\"280px\" />\r\n\r\n@code { private ImageCompare.ImageCompareOrientation _orientation = ImageCompare.ImageCompareOrientation.Horizontal; }"
|
|
23338
23374
|
},
|
|
23339
23375
|
{
|
|
23340
|
-
"title": "
|
|
23341
|
-
"code": "<ImageCompare BeforeSrc=\"before.jpg\" AfterSrc=\"after.jpg\"\r\n
|
|
23376
|
+
"title": "Custom Initial Position",
|
|
23377
|
+
"code": "<ImageCompare BeforeSrc=\"before.jpg\" AfterSrc=\"after.jpg\"\r\n InitialPosition=\"25\" Height=\"280px\" />"
|
|
23342
23378
|
}
|
|
23343
23379
|
],
|
|
23344
23380
|
"subComponents": {},
|
|
@@ -24324,8 +24360,8 @@
|
|
|
24324
24360
|
"code": "<Flex Align=\"center\" Justify=\"between\" Class=\"rounded-md border px-3 py-2\">\r\n <Lumeo.Text As=\"span\" Size=\"sm\" Color=\"muted\">Open command palette</Lumeo.Text>\r\n <Flex Align=\"center\" Gap=\"1\">\r\n <Kbd>Ctrl</Kbd>\r\n <Lumeo.Text As=\"span\" Size=\"xs\" Color=\"muted\">+</Lumeo.Text>\r\n <Kbd>K</Kbd>\r\n </Flex>\r\n</Flex>"
|
|
24325
24361
|
},
|
|
24326
24362
|
{
|
|
24327
|
-
"title": "
|
|
24328
|
-
"code": "
|
|
24363
|
+
"title": "Size — interactive",
|
|
24364
|
+
"code": "<Kbd Size=\"Kbd.KbdSize.Sm\">Ctrl</Kbd>\r\n<Kbd>Ctrl</Kbd> @* Default *@\r\n<Kbd Size=\"Kbd.KbdSize.Lg\">Ctrl</Kbd>"
|
|
24329
24365
|
}
|
|
24330
24366
|
],
|
|
24331
24367
|
"subComponents": {},
|
|
@@ -25062,6 +25098,10 @@
|
|
|
25062
25098
|
{
|
|
25063
25099
|
"title": "Single Column Panel",
|
|
25064
25100
|
"code": "<MegaMenu>\r\n <MegaMenuItem Label=\"Company\">\r\n <MegaMenuPanel Columns=\"1\" FullWidth=\"false\">\r\n <MegaMenuGroup>\r\n <MegaMenuLink Href=\"/about\" Title=\"About Us\" />\r\n <MegaMenuLink Href=\"/careers\" Title=\"Careers\" />\r\n </MegaMenuGroup>\r\n </MegaMenuPanel>\r\n </MegaMenuItem>\r\n</MegaMenu>"
|
|
25101
|
+
},
|
|
25102
|
+
{
|
|
25103
|
+
"title": "Orientation — interactive",
|
|
25104
|
+
"code": "<Segmented @bind-Value=\"_orientationSel\" Options=\"_orientationOptions\" />\r\n<MegaMenu Orientation=\"@_activeMegaMenuOrientation\">\r\n <MegaMenuItem Label=\"Products\">\r\n <MegaMenuPanel Columns=\"2\">\r\n <MegaMenuGroup Title=\"Design\">\r\n <MegaMenuLink Href=\"#\" Title=\"Components\" Description=\"Pre-built UI components\" />\r\n </MegaMenuGroup>\r\n <MegaMenuGroup Title=\"Development\">\r\n <MegaMenuLink Href=\"#\" Title=\"CLI\" Description=\"Command-line tooling\" />\r\n </MegaMenuGroup>\r\n </MegaMenuPanel>\r\n </MegaMenuItem>\r\n <MegaMenuItem Label=\"Docs\" Href=\"#\" />\r\n</MegaMenu>\r\n\r\n@code {\r\n private string _orientationSel = \"Horizontal\";\r\n private MegaMenu.MegaMenuOrientation _activeMegaMenuOrientation =>\r\n Enum.Parse<MegaMenu.MegaMenuOrientation>(_orientationSel);\r\n private List<Segmented.SegmentedOption> _orientationOptions = new()\r\n {\r\n new() { Label = \"Horizontal\", Value = \"Horizontal\" },\r\n new() { Label = \"Vertical\", Value = \"Vertical\" },\r\n };\r\n}"
|
|
25065
25105
|
}
|
|
25066
25106
|
],
|
|
25067
25107
|
"subComponents": {
|
|
@@ -28946,8 +28986,8 @@
|
|
|
28946
28986
|
"code": "<QRCode Value=\"...\" ErrorCorrectionLevel=\"QRCode.QRErrorLevel.Low\" />\r\n<QRCode Value=\"...\" ErrorCorrectionLevel=\"QRCode.QRErrorLevel.Medium\" />\r\n<QRCode Value=\"...\" ErrorCorrectionLevel=\"QRCode.QRErrorLevel.Quartile\" />\r\n<QRCode Value=\"...\" ErrorCorrectionLevel=\"QRCode.QRErrorLevel.High\" />"
|
|
28947
28987
|
},
|
|
28948
28988
|
{
|
|
28949
|
-
"title": "
|
|
28950
|
-
"code": "<QRCode Value=\"
|
|
28989
|
+
"title": "Error Correction Level (interactive)",
|
|
28990
|
+
"code": "<Segmented @bind-Value=\"_level\">\r\n <SegmentedItem Value=\"@QRCode.QRErrorLevel.Low\">Low</SegmentedItem>\r\n <SegmentedItem Value=\"@QRCode.QRErrorLevel.Medium\">Medium</SegmentedItem>\r\n <SegmentedItem Value=\"@QRCode.QRErrorLevel.Quartile\">Quartile</SegmentedItem>\r\n <SegmentedItem Value=\"@QRCode.QRErrorLevel.High\">High</SegmentedItem>\r\n</Segmented>\r\n<QRCode Value=\"https://lumeo.nativ.sh/\" Size=\"160\" ErrorCorrectionLevel=\"@_level\" />\r\n\r\n@code { private QRCode.QRErrorLevel _level = QRCode.QRErrorLevel.Medium; }"
|
|
28951
28991
|
}
|
|
28952
28992
|
],
|
|
28953
28993
|
"subComponents": {},
|
|
@@ -30096,6 +30136,10 @@
|
|
|
30096
30136
|
{
|
|
30097
30137
|
"title": "All Statuses",
|
|
30098
30138
|
"code": "<Result Status=\"Result.ResultStatus.Warning\" Title=\"Warning\" SubTitle=\"Proceed with caution.\" />\r\n<Result Status=\"Result.ResultStatus.Info\" Title=\"Information\" SubTitle=\"Useful info.\" />\r\n<Result Status=\"Result.ResultStatus.NotFound\" Title=\"404 Not Found\" SubTitle=\"Page does not exist.\" />\r\n<Result Status=\"Result.ResultStatus.Forbidden\" Title=\"403 Forbidden\" SubTitle=\"No permission.\" />"
|
|
30139
|
+
},
|
|
30140
|
+
{
|
|
30141
|
+
"title": "Status — interactive",
|
|
30142
|
+
"code": "<Result Status=\"Result.ResultStatus.Success\" Title=\"Success Result\" SubTitle=\"This is a success result page.\" />"
|
|
30099
30143
|
}
|
|
30100
30144
|
],
|
|
30101
30145
|
"subComponents": {},
|
|
@@ -31379,7 +31423,8 @@
|
|
|
31379
31423
|
"description": "Pill-shaped tab-like single-select control.",
|
|
31380
31424
|
"nugetPackage": "Lumeo",
|
|
31381
31425
|
"files": [
|
|
31382
|
-
"UI/Segmented/Segmented.razor"
|
|
31426
|
+
"UI/Segmented/Segmented.razor",
|
|
31427
|
+
"UI/Segmented/SegmentedItem.razor"
|
|
31383
31428
|
],
|
|
31384
31429
|
"namespace": "Lumeo",
|
|
31385
31430
|
"inheritsFrom": null,
|
|
@@ -31405,7 +31450,15 @@
|
|
|
31405
31450
|
"name": "Options",
|
|
31406
31451
|
"type": "List<SegmentedOption>?",
|
|
31407
31452
|
"default": null,
|
|
31408
|
-
"description": null,
|
|
31453
|
+
"description": "Data-driven options. When set, takes precedence over ChildContent. Leave null and pass SegmentedItem children for the compound-component flavour.",
|
|
31454
|
+
"isCascading": false,
|
|
31455
|
+
"captureUnmatched": false
|
|
31456
|
+
},
|
|
31457
|
+
{
|
|
31458
|
+
"name": "ChildContent",
|
|
31459
|
+
"type": "RenderFragment?",
|
|
31460
|
+
"default": null,
|
|
31461
|
+
"description": "Compound-mode content — one or more SegmentedItem. Ignored when Options is set.",
|
|
31409
31462
|
"isCascading": false,
|
|
31410
31463
|
"captureUnmatched": false
|
|
31411
31464
|
},
|
|
@@ -31442,7 +31495,13 @@
|
|
|
31442
31495
|
}
|
|
31443
31496
|
],
|
|
31444
31497
|
"enums": [],
|
|
31445
|
-
"records": [
|
|
31498
|
+
"records": [
|
|
31499
|
+
{
|
|
31500
|
+
"name": "SegmentedContext",
|
|
31501
|
+
"signature": "SegmentedContext(\n string? Value,\n EventCallback<string> Select,\n Func<bool, string> GetItemClasses)",
|
|
31502
|
+
"description": "Cascading context for compound-mode SegmentedItem children — they read the active value + the parent's item-class function (so style stays consistent with Options-mode) and invoke Select on click."
|
|
31503
|
+
}
|
|
31504
|
+
],
|
|
31446
31505
|
"cssVars": [
|
|
31447
31506
|
"--color-background",
|
|
31448
31507
|
"--color-foreground",
|
|
@@ -31464,7 +31523,70 @@
|
|
|
31464
31523
|
"code": "new SegmentedOption { Label = \"Weekly\", Value = \"weekly\", Disabled = true }"
|
|
31465
31524
|
}
|
|
31466
31525
|
],
|
|
31467
|
-
"subComponents": {
|
|
31526
|
+
"subComponents": {
|
|
31527
|
+
"SegmentedItem": {
|
|
31528
|
+
"componentName": "SegmentedItem",
|
|
31529
|
+
"fileName": "SegmentedItem.razor",
|
|
31530
|
+
"namespace": "Lumeo",
|
|
31531
|
+
"inheritsFrom": null,
|
|
31532
|
+
"implements": [],
|
|
31533
|
+
"parameters": [
|
|
31534
|
+
{
|
|
31535
|
+
"name": "Context",
|
|
31536
|
+
"type": "Segmented.SegmentedContext?",
|
|
31537
|
+
"default": null,
|
|
31538
|
+
"description": null,
|
|
31539
|
+
"isCascading": true,
|
|
31540
|
+
"captureUnmatched": false
|
|
31541
|
+
},
|
|
31542
|
+
{
|
|
31543
|
+
"name": "Value",
|
|
31544
|
+
"type": "string",
|
|
31545
|
+
"default": "\"\"",
|
|
31546
|
+
"description": "The value selected when this item is clicked. Must match one of the parent Segmented's expected values.",
|
|
31547
|
+
"isCascading": false,
|
|
31548
|
+
"captureUnmatched": false
|
|
31549
|
+
},
|
|
31550
|
+
{
|
|
31551
|
+
"name": "ChildContent",
|
|
31552
|
+
"type": "RenderFragment?",
|
|
31553
|
+
"default": null,
|
|
31554
|
+
"description": null,
|
|
31555
|
+
"isCascading": false,
|
|
31556
|
+
"captureUnmatched": false
|
|
31557
|
+
},
|
|
31558
|
+
{
|
|
31559
|
+
"name": "IconContent",
|
|
31560
|
+
"type": "RenderFragment?",
|
|
31561
|
+
"default": null,
|
|
31562
|
+
"description": "Optional leading icon slot.",
|
|
31563
|
+
"isCascading": false,
|
|
31564
|
+
"captureUnmatched": false
|
|
31565
|
+
},
|
|
31566
|
+
{
|
|
31567
|
+
"name": "Disabled",
|
|
31568
|
+
"type": "bool",
|
|
31569
|
+
"default": null,
|
|
31570
|
+
"description": null,
|
|
31571
|
+
"isCascading": false,
|
|
31572
|
+
"captureUnmatched": false
|
|
31573
|
+
},
|
|
31574
|
+
{
|
|
31575
|
+
"name": "AdditionalAttributes",
|
|
31576
|
+
"type": "Dictionary<string, object>?",
|
|
31577
|
+
"default": null,
|
|
31578
|
+
"description": null,
|
|
31579
|
+
"isCascading": false,
|
|
31580
|
+
"captureUnmatched": true
|
|
31581
|
+
}
|
|
31582
|
+
],
|
|
31583
|
+
"events": [],
|
|
31584
|
+
"enums": [],
|
|
31585
|
+
"records": [],
|
|
31586
|
+
"parseFailed": false,
|
|
31587
|
+
"parseError": null
|
|
31588
|
+
}
|
|
31589
|
+
},
|
|
31468
31590
|
"parseFailed": false,
|
|
31469
31591
|
"parseError": null
|
|
31470
31592
|
},
|
|
@@ -32901,6 +33023,10 @@
|
|
|
32901
33023
|
"title": "Overlay",
|
|
32902
33024
|
"code": "<SidebarProvider @bind-IsCollapsed=\"_isCollapsed\" Variant=\"SidebarProvider.SidebarVariant.Overlay\">\r\n <SidebarComponent>\r\n <SidebarHeader>\r\n <Lumeo.Text As=\"span\" Size=\"sm\" Weight=\"semibold\">Workspace</Lumeo.Text>\r\n </SidebarHeader>\r\n <SidebarContent>\r\n <SidebarGroup>\r\n <SidebarGroupLabel>Navigation</SidebarGroupLabel>\r\n <SidebarMenu>\r\n <SidebarMenuItem>\r\n <SidebarMenuButton Href=\"#\" IsActive=\"true\">\r\n <IconContent><Blazicon Svg=\"Lucide.House\" class=\"h-4 w-4\" /></IconContent>\r\n <LabelContent><span>Home</span></LabelContent>\r\n </SidebarMenuButton>\r\n </SidebarMenuItem>\r\n </SidebarMenu>\r\n </SidebarGroup>\r\n </SidebarContent>\r\n </SidebarComponent>\r\n <main class=\"flex-1 p-6\">\r\n <SidebarTrigger />\r\n <Lumeo.Text Size=\"sm\" Color=\"muted\">Click backdrop to dismiss.</Lumeo.Text>\r\n </main>\r\n</SidebarProvider>"
|
|
32903
33025
|
},
|
|
33026
|
+
{
|
|
33027
|
+
"title": "Side — interactive",
|
|
33028
|
+
"code": "<Segmented @bind-Value=\"_sidebarSideSel\" Options=\"_sidebarSideOptions\" />\r\n<SidebarProvider>\r\n <SidebarComponent Side=\"@_activeSidebarSide\">\r\n <SidebarHeader>...</SidebarHeader>\r\n <SidebarContent>...</SidebarContent>\r\n </SidebarComponent>\r\n <main class=\"flex-1 p-6\">\r\n <SidebarTrigger />\r\n </main>\r\n</SidebarProvider>\r\n\r\n@code {\r\n private string _sidebarSideSel = \"Left\";\r\n private SidebarComponent.SidebarSide _activeSidebarSide =>\r\n Enum.Parse<SidebarComponent.SidebarSide>(_sidebarSideSel);\r\n private List<Segmented.SegmentedOption> _sidebarSideOptions = new()\r\n {\r\n new() { Label = \"Left\", Value = \"Left\" },\r\n new() { Label = \"Right\", Value = \"Right\" },\r\n };\r\n}"
|
|
33029
|
+
},
|
|
32904
33030
|
{
|
|
32905
33031
|
"title": "Icon",
|
|
32906
33032
|
"code": "<SidebarProvider @bind-IsCollapsed=\"_isCollapsed\" Variant=\"SidebarProvider.SidebarVariant.Icon\">\r\n <SidebarComponent>\r\n <SidebarContent>\r\n <SidebarGroup>\r\n <SidebarMenu>\r\n <SidebarMenuItem>\r\n <SidebarMenuButton Href=\"#\" IsActive=\"true\" Tooltip=\"Home\">\r\n <IconContent><Blazicon Svg=\"Lucide.House\" class=\"h-4 w-4\" /></IconContent>\r\n <LabelContent><span>Home</span></LabelContent>\r\n </SidebarMenuButton>\r\n </SidebarMenuItem>\r\n </SidebarMenu>\r\n </SidebarGroup>\r\n </SidebarContent>\r\n </SidebarComponent>\r\n <main class=\"flex-1 p-6\">\r\n <SidebarTrigger />\r\n <Lumeo.Text Size=\"sm\" Color=\"muted\">Toggle to expand with labels.</Lumeo.Text>\r\n </main>\r\n</SidebarProvider>"
|
|
@@ -34191,6 +34317,10 @@
|
|
|
34191
34317
|
{
|
|
34192
34318
|
"title": "Without Data (Label + Value only)",
|
|
34193
34319
|
"code": "<SparkCard Label=\"Uptime\" Value=\"99.98%\" />\n<SparkCard Label=\"SLA\" Value=\"100%\" />\n<SparkCard Label=\"Incidents\" Value=\"0\" />"
|
|
34320
|
+
},
|
|
34321
|
+
{
|
|
34322
|
+
"title": "Variant (interactive)",
|
|
34323
|
+
"code": "<Segmented @bind-Value=\"_variant\">\n <SegmentedItem Value=\"@SparkCard.SparkCardVariant.Default\">Default</SegmentedItem>\n <SegmentedItem Value=\"@SparkCard.SparkCardVariant.Bordered\">Bordered</SegmentedItem>\n <SegmentedItem Value=\"@SparkCard.SparkCardVariant.Filled\">Filled</SegmentedItem>\n</Segmented>\n<Grid Columns=\"3\" Gap=\"4\">\n <SparkCard Label=\"Revenue\" Value=\"$24,800\" Data=\"@_data\" Variant=\"@_variant\" />\n <SparkCard Label=\"Sessions\" Value=\"8,412\" Data=\"@_data\" Variant=\"@_variant\" />\n <SparkCard Label=\"Bounce Rate\" Value=\"34.2%\" Data=\"@_data\" Variant=\"@_variant\" />\n</Grid>\n\n@code { private SparkCard.SparkCardVariant _variant = SparkCard.SparkCardVariant.Default; }"
|
|
34194
34324
|
}
|
|
34195
34325
|
],
|
|
34196
34326
|
"subComponents": {},
|
|
@@ -34650,6 +34780,10 @@
|
|
|
34650
34780
|
{
|
|
34651
34781
|
"title": "In a Button",
|
|
34652
34782
|
"code": "<Button Disabled=\"true\">\r\n <Spinner Size=\"Spinner.SpinnerSize.Sm\" Class=\"mr-2\" />\r\n Please wait\r\n</Button>"
|
|
34783
|
+
},
|
|
34784
|
+
{
|
|
34785
|
+
"title": "Variant — interactive",
|
|
34786
|
+
"code": "<Spinner Variant=\"Spinner.SpinnerVariant.Ring\" />\r\n<Spinner Variant=\"Spinner.SpinnerVariant.Dots\" />\r\n<Spinner Variant=\"Spinner.SpinnerVariant.Bars\" />"
|
|
34653
34787
|
}
|
|
34654
34788
|
],
|
|
34655
34789
|
"subComponents": {},
|
|
@@ -35269,6 +35403,14 @@
|
|
|
35269
35403
|
{
|
|
35270
35404
|
"title": "With Trend",
|
|
35271
35405
|
"code": "<Statistic Title=\"Sales\" Value=\"1,234\" ShowTrend=\"true\" TrendValue=\"+12.5%\" TrendDirection=\"Statistic.TrendType.Up\" />\r\n<Statistic Title=\"Returns\" Value=\"42\" ShowTrend=\"true\" TrendValue=\"-3.2%\" TrendDirection=\"Statistic.TrendType.Down\" />"
|
|
35406
|
+
},
|
|
35407
|
+
{
|
|
35408
|
+
"title": "Size (interactive)",
|
|
35409
|
+
"code": "<Segmented @bind-Value=\"_size\">\r\n <SegmentedItem Value=\"@Statistic.StatisticSize.Small\">Small</SegmentedItem>\r\n <SegmentedItem Value=\"@Statistic.StatisticSize.Medium\">Medium</SegmentedItem>\r\n <SegmentedItem Value=\"@Statistic.StatisticSize.Large\">Large</SegmentedItem>\r\n</Segmented>\r\n<Statistic Title=\"Monthly Revenue\" Value=\"48,290\" Size=\"@_size\" ShowTrend=\"true\" TrendValue=\"+12%\" TrendDirection=\"Statistic.TrendType.Up\">\r\n <Prefix><Lumeo.Text As=\"span\">$</Lumeo.Text></Prefix>\r\n</Statistic>\r\n\r\n@code { private Statistic.StatisticSize _size = Statistic.StatisticSize.Medium; }"
|
|
35410
|
+
},
|
|
35411
|
+
{
|
|
35412
|
+
"title": "Variant (interactive)",
|
|
35413
|
+
"code": "<Segmented @bind-Value=\"_variant\">\r\n <SegmentedItem Value=\"@Statistic.StatisticVariant.Default\">Default</SegmentedItem>\r\n <SegmentedItem Value=\"@Statistic.StatisticVariant.Minimal\">Minimal</SegmentedItem>\r\n <SegmentedItem Value=\"@Statistic.StatisticVariant.Bordered\">Bordered</SegmentedItem>\r\n</Segmented>\r\n<Grid Columns=\"3\" Gap=\"4\">\r\n <Statistic Title=\"Users\" Value=\"12,847\" Variant=\"@_variant\" />\r\n <Statistic Title=\"Revenue\" Value=\"48,290\" Variant=\"@_variant\" ShowTrend=\"true\" TrendValue=\"+8%\" TrendDirection=\"Statistic.TrendType.Up\">\r\n <Prefix><Lumeo.Text As=\"span\">$</Lumeo.Text></Prefix>\r\n </Statistic>\r\n <Statistic Title=\"Churn\" Value=\"2.1\" Variant=\"@_variant\" ShowTrend=\"true\" TrendValue=\"-0.3%\" TrendDirection=\"Statistic.TrendType.Down\">\r\n <Suffix><Lumeo.Text As=\"span\">%</Lumeo.Text></Suffix>\r\n </Statistic>\r\n</Grid>\r\n\r\n@code { private Statistic.StatisticVariant _variant = Statistic.StatisticVariant.Default; }"
|
|
35272
35414
|
}
|
|
35273
35415
|
],
|
|
35274
35416
|
"subComponents": {},
|
|
@@ -35439,6 +35581,10 @@
|
|
|
35439
35581
|
{
|
|
35440
35582
|
"title": "Vertical Orientation",
|
|
35441
35583
|
"code": "<Stepper @bind-ActiveStep=\"_step\" Orientation=\"Stepper.StepperOrientation.Vertical\">\n <StepperStep Title=\"Choose plan\" Description=\"Pick a subscription\">\n <Lumeo.Text Size=\"sm\" Color=\"muted\">Select the plan that fits your needs.</Lumeo.Text>\n </StepperStep>\n <StepperStep Title=\"Payment\" Description=\"Enter billing details\">\n <Input Placeholder=\"Card number\" />\n </StepperStep>\n <StepperStep Title=\"Confirm\">\n <Lumeo.Text Size=\"sm\" Color=\"muted\">Confirm and activate.</Lumeo.Text>\n </StepperStep>\n</Stepper>"
|
|
35584
|
+
},
|
|
35585
|
+
{
|
|
35586
|
+
"title": "Orientation — interactive",
|
|
35587
|
+
"code": "<Segmented @bind-Value=\"_orientationSel\" Options=\"_orientationOptions\" />\n<Stepper @bind-ActiveStep=\"_step\" Orientation=\"@_activeStepperOrientation\">\n <StepperStep Title=\"Account Info\" Description=\"Set up your account\">\n <Input Placeholder=\"Email address\" />\n </StepperStep>\n <StepperStep Title=\"Profile\" Description=\"Personalize your profile\">\n <Input Placeholder=\"Display name\" />\n </StepperStep>\n <StepperStep Title=\"Review\" Description=\"Confirm your details\">\n <Lumeo.Text Size=\"sm\" Color=\"muted\">Review your information.</Lumeo.Text>\n </StepperStep>\n</Stepper>\n\n@code {\n private string _orientationSel = \"Horizontal\";\n private Stepper.StepperOrientation _activeStepperOrientation =>\n Enum.Parse<Stepper.StepperOrientation>(_orientationSel);\n private List<Segmented.SegmentedOption> _orientationOptions = new()\n {\n new() { Label = \"Horizontal\", Value = \"Horizontal\" },\n new() { Label = \"Vertical\", Value = \"Vertical\" },\n };\n}"
|
|
35442
35588
|
}
|
|
35443
35589
|
],
|
|
35444
35590
|
"subComponents": {
|
|
@@ -35691,8 +35837,8 @@
|
|
|
35691
35837
|
"code": "<Steps CurrentStep=\"2\" Orientation=\"Steps.StepsOrientation.Vertical\">\r\n <StepsItem Title=\"Sign Up\" Description=\"Create an account\" />\r\n <StepsItem Title=\"Verify Email\" Description=\"Confirm your email\" />\r\n <StepsItem Title=\"Set Password\" Description=\"Choose a password\" />\r\n <StepsItem Title=\"Done\" Description=\"Start using the app\" />\r\n</Steps>"
|
|
35692
35838
|
},
|
|
35693
35839
|
{
|
|
35694
|
-
"title": "
|
|
35695
|
-
"code": "<
|
|
35840
|
+
"title": "Orientation (interactive)",
|
|
35841
|
+
"code": "<Segmented @bind-Value=\"_orientation\">\r\n <SegmentedItem Value=\"@Steps.StepsOrientation.Horizontal\">Horizontal</SegmentedItem>\r\n <SegmentedItem Value=\"@Steps.StepsOrientation.Vertical\">Vertical</SegmentedItem>\r\n</Segmented>\r\n<Steps CurrentStep=\"1\" Orientation=\"@_orientation\">\r\n <StepsItem Title=\"Account\" Description=\"Create your account\" />\r\n <StepsItem Title=\"Profile\" Description=\"Set up your profile\" />\r\n <StepsItem Title=\"Payment\" Description=\"Add billing info\" />\r\n <StepsItem Title=\"Done\" Description=\"All finished\" />\r\n</Steps>\r\n\r\n@code { private Steps.StepsOrientation _orientation = Steps.StepsOrientation.Horizontal; }"
|
|
35696
35842
|
}
|
|
35697
35843
|
],
|
|
35698
35844
|
"subComponents": {
|
|
@@ -37692,8 +37838,8 @@
|
|
|
37692
37838
|
"code": "<Timeline Orientation=\"Timeline.TimelineOrientation.Horizontal\">\r\n <TimelineItem Title=\"Step 1\" Description=\"Planning\" />\r\n <TimelineItem Title=\"Step 2\" Description=\"Design\" />\r\n <TimelineItem Title=\"Step 3\" Description=\"Development\" />\r\n <TimelineItem Title=\"Step 4\" Description=\"Launch\" />\r\n</Timeline>"
|
|
37693
37839
|
},
|
|
37694
37840
|
{
|
|
37695
|
-
"title": "
|
|
37696
|
-
"code": "<
|
|
37841
|
+
"title": "Orientation (interactive)",
|
|
37842
|
+
"code": "<Segmented @bind-Value=\"_orientation\">\r\n <SegmentedItem Value=\"@Timeline.TimelineOrientation.Vertical\">Vertical</SegmentedItem>\r\n <SegmentedItem Value=\"@Timeline.TimelineOrientation.Horizontal\">Horizontal</SegmentedItem>\r\n</Segmented>\r\n<Timeline Orientation=\"@_orientation\">\r\n <TimelineItem Title=\"Planning\" Description=\"Scope defined\" Time=\"Jan 1\" />\r\n <TimelineItem Title=\"Design\" Description=\"Wireframes approved\" Time=\"Jan 8\" />\r\n <TimelineItem Title=\"Development\" Description=\"Sprint in progress\" Time=\"Jan 15\" />\r\n <TimelineItem Title=\"Launch\" Description=\"Shipped to production\" Time=\"Feb 1\" />\r\n</Timeline>\r\n\r\n@code { private Timeline.TimelineOrientation _orientation = Timeline.TimelineOrientation.Vertical; }"
|
|
37697
37843
|
}
|
|
37698
37844
|
],
|
|
37699
37845
|
"subComponents": {
|
|
@@ -39071,6 +39217,10 @@
|
|
|
39071
39217
|
"title": "Expanded by Default",
|
|
39072
39218
|
"code": "<ToolCallCard ToolName=\"analyze_sentiment\"\n Status=\"ToolCallCard.ToolCallStatus.Success\"\n Input=\"{"text": "Lumeo makes Blazor development a joy!"}\"\n Output=\"{"sentiment": "positive", "score": 0.96}\"\n DurationMs=\"128\"\n DefaultOpen=\"true\" />"
|
|
39073
39219
|
},
|
|
39220
|
+
{
|
|
39221
|
+
"title": "Status (interactive)",
|
|
39222
|
+
"code": "<Segmented @bind-Value=\"_status\">\n <SegmentedItem Value=\"@ToolCallCard.ToolCallStatus.Pending\">Pending</SegmentedItem>\n <SegmentedItem Value=\"@ToolCallCard.ToolCallStatus.Running\">Running</SegmentedItem>\n <SegmentedItem Value=\"@ToolCallCard.ToolCallStatus.Success\">Success</SegmentedItem>\n <SegmentedItem Value=\"@ToolCallCard.ToolCallStatus.Error\">Error</SegmentedItem>\n</Segmented>\n<ToolCallCard ToolName=\"run_query\" Status=\"@_status\"\n Input=\"{"sql": "SELECT * FROM users"}\"\n Output=\"@(_status == Success ? \"10 rows\" : null)\"\n ErrorMessage=\"@(_status == Error ? \"Timeout\" : null)\" />\n\n@code { private ToolCallCard.ToolCallStatus _status = ToolCallCard.ToolCallStatus.Pending; }"
|
|
39223
|
+
},
|
|
39074
39224
|
{
|
|
39075
39225
|
"title": "Multiple Tool Calls",
|
|
39076
39226
|
"code": "@foreach (var call in _toolCalls)\n{\n <ToolCallCard ToolName=\"@call.Name\"\n Status=\"@call.Status\"\n Input=\"@call.Input\"\n Output=\"@call.Output\"\n DurationMs=\"@call.DurationMs\" />\n}"
|
package/src/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://lumeo.nativ.sh/registry-schema.json",
|
|
3
3
|
"version": "2.0.0",
|
|
4
|
-
"generated": "2026-05-
|
|
4
|
+
"generated": "2026-05-13T07:19:07.0465652Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"accordion": {
|
|
7
7
|
"name": "Accordion",
|
|
@@ -2626,7 +2626,8 @@
|
|
|
2626
2626
|
"hasDocsPage": true,
|
|
2627
2627
|
"nugetPackage": "Lumeo",
|
|
2628
2628
|
"files": [
|
|
2629
|
-
"UI/Segmented/Segmented.razor"
|
|
2629
|
+
"UI/Segmented/Segmented.razor",
|
|
2630
|
+
"UI/Segmented/SegmentedItem.razor"
|
|
2630
2631
|
],
|
|
2631
2632
|
"dependencies": [],
|
|
2632
2633
|
"packageDependencies": [],
|