20 Commits

Author SHA1 Message Date
khwezi 66081eead5 Merge pull request 'Added image deletion functionality to product creation' (#20) from products into master
Reviewed-on: #20
2026-05-20 16:12:55 +02:00
khwezi b8a5d81856 Merge pull request 'Fixed manifest ev variable reference syntax' (#19) from products into master
Reviewed-on: #19
2026-05-20 13:42:27 +02:00
khwezi 184ce1854e Merge pull request 'Completed create product component' (#18) from products into master
Reviewed-on: #18
2026-05-20 12:02:14 +02:00
khwezi d8964da36f Merge pull request 'Started producer design' (#17) from products into master
Reviewed-on: #17
2026-05-18 19:20:08 +02:00
khwezi cf0d6ee62a Merge pull request 'Stable notifications page' (#16) from notifications into master
Reviewed-on: #16
2026-05-17 16:11:39 +02:00
khwezi 029f5b5d8a Merge pull request 'Refactored forced https redirection' (#15) from notifications into master
Reviewed-on: #15
2026-05-17 11:35:49 +02:00
khwezi 3e1b2eb48c Merge pull request 'Forcing https' (#14) from notifications into master
Reviewed-on: #14
2026-05-17 11:06:46 +02:00
khwezi 2d833d3a90 Merge pull request 'Forced proto callback' (#13) from notifications into master
Reviewed-on: #13
2026-05-17 09:01:04 +02:00
khwezi aa7b3f3d68 Merge pull request 'Added support for header forwarding' (#12) from notifications into master
Reviewed-on: #12
2026-05-17 08:48:01 +02:00
khwezi e24a0a3144 Merge pull request 'notifications' (#11) from notifications into master
Reviewed-on: #11
2026-05-17 08:29:51 +02:00
khwezi 76fe6886f2 Merge pull request 'notifications' (#10) from notifications into master
Reviewed-on: #10
2026-05-16 15:30:11 +02:00
khwezi bbc724957a Merge pull request 'styling' (#9) from styling into master
Reviewed-on: #9
2026-05-16 12:43:49 +02:00
khwezi 47418a60ad Merge pull request 'styling' (#8) from styling into master
Reviewed-on: #8
2026-05-16 12:02:16 +02:00
khwezi a5f397e388 Merge pull request 'Refactored Monitoring ID' (#7) from styling into master
Reviewed-on: #7
2026-05-16 02:10:30 +02:00
khwezi ea77dfa4af Merge pull request 'Refactored docker shop admin image name' (#6) from styling into master
Reviewed-on: #6
2026-05-16 02:02:21 +02:00
khwezi a002323d69 Merge pull request 'Fixed PVC reference' (#5) from styling into master
Reviewed-on: #5
2026-05-16 01:51:23 +02:00
khwezi 519ef68ef8 Merge pull request 'Refactored manifest ingressroute' (#4) from styling into master
Reviewed-on: #4
2026-05-16 01:43:10 +02:00
khwezi 98eefa89b4 Merge pull request 'Refactored dockerfile' (#3) from styling into master
Reviewed-on: #3
2026-05-16 01:34:04 +02:00
khwezi 3b632a5bc7 Merge pull request 'Run trigger' (#2) from styling into master
Reviewed-on: #2
2026-05-16 01:27:13 +02:00
khwezi f19eaa75ae Merge pull request 'styling' (#1) from styling into master
Reviewed-on: #1
2026-05-16 01:24:48 +02:00
6 changed files with 55 additions and 443 deletions
@@ -1,100 +0,0 @@
<div class="custom-date-trigger-box @(isCalendarOpen ? "focused" : "")" @onclick="ToggleCalendar">
<span>@Value.ToString("yyyy / MM / dd")</span>
<i class="bi bi-calendar3 calendar-icon"></i>
</div>
@if (isCalendarOpen)
{
<div class="brand-calendar-popup">
<div class="calendar-nav-header">
<button type="button" class="btn-cal-nav" @onclick="NavigateMonthPrevious">&lt;</button>
<span class="calendar-current-month">@currentMonthDisplay.ToString("MMMM yyyy")</span>
<button type="button" class="btn-cal-nav" @onclick="NavigateMonthNext">&gt;</button>
</div>
<div class="calendar-days-grid-header">
<div>Su</div><div>Mo</div><div>Tu</div><div>We</div><div>Th</div><div>Fr</div><div>Sa</div>
</div>
<div class="calendar-days-matrix">
@foreach (var day in paddingDays)
{
<div class="calendar-day-blank"></div>
}
@foreach (var day in currentMonthDays)
{
var loopDay = day;
<button type="button"
class="calendar-day-btn @(IsToday(loopDay) ? "is-today" : "") @(IsSelected(loopDay) ? "is-selected" : "")"
@onclick="() => SelectDate(loopDay)">
@loopDay.Day
</button>
}
</div>
</div>
}
@code {
[Parameter]
public DateTime Value { get; set; } = DateTime.Today;
[Parameter]
public EventCallback<DateTime> ValueChanged { get; set; }
private bool isCalendarOpen = false;
private DateTime currentMonthDisplay;
private List<DateTime> paddingDays = new();
private List<DateTime> currentMonthDays = new();
protected override void OnParametersSet()
{
if (currentMonthDisplay == DateTime.MinValue)
{
currentMonthDisplay = new DateTime(Value.Year, Value.Month, 1);
GenerateCalendarMatrix();
}
}
private void ToggleCalendar() => isCalendarOpen = !isCalendarOpen;
private async Task SelectDate(DateTime date)
{
Value = date;
isCalendarOpen = false;
await ValueChanged.InvokeAsync(Value);
}
private void NavigateMonthPrevious()
{
currentMonthDisplay = currentMonthDisplay.AddMonths(-1);
GenerateCalendarMatrix();
}
private void NavigateMonthNext()
{
currentMonthDisplay = currentMonthDisplay.AddMonths(1);
GenerateCalendarMatrix();
}
private void GenerateCalendarMatrix()
{
currentMonthDays.Clear();
paddingDays.Clear();
int daysInMonth = DateTime.DaysInMonth(currentMonthDisplay.Year, currentMonthDisplay.Month);
DayOfWeek firstDayOfWeek = currentMonthDisplay.DayOfWeek;
for (int i = 0; i < (int)firstDayOfWeek; i++)
{
paddingDays.Add(DateTime.MinValue);
}
for (int day = 1; day <= daysInMonth; day++)
{
currentMonthDays.Add(new DateTime(currentMonthDisplay.Year, currentMonthDisplay.Month, day));
}
}
private bool IsToday(DateTime date) => date.Date == DateTime.Today;
private bool IsSelected(DateTime date) => date.Date == Value.Date;
}
@@ -1,124 +0,0 @@
/* Custom Date Trigger and Box Engines only */
.custom-date-trigger-box {
width: 100%;
box-sizing: border-box;
background: #060b13 !important;
border: 1px solid #1e293b !important;
border-radius: 4px;
padding: 0.85rem 1rem;
color: #f8fafc !important;
font-size: 0.9rem;
outline: none;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
.custom-date-trigger-box.focused {
border-color: #00f2fe !important;
box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.2), 0 0 12px rgba(0, 242, 254, 0.1) !important;
background: #02060d !important;
}
.calendar-icon {
color: #64748b;
flex-shrink: 0;
}
/* Floating Overlay Window Panel Layout */
.brand-calendar-popup {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
width: 100% !important;
box-sizing: border-box;
padding: 1rem;
background-color: #0b0f19;
border: 1px solid #1e293b;
border-radius: 6px;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
margin-top: 0.5rem;
}
.calendar-nav-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.75rem;
}
.calendar-current-month {
font-size: 0.85rem;
font-weight: 600;
color: #f1f5f9;
font-family: monospace;
}
.btn-cal-nav {
background: transparent;
border: none;
color: #94a3b8;
font-size: 0.9rem;
cursor: pointer;
padding: 0.2rem 0.5rem;
border-radius: 4px;
transition: background-color 0.1s;
}
.btn-cal-nav:hover {
background-color: #1e293b;
color: #f8fafc;
}
.calendar-days-grid-header {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
font-size: 0.7rem;
font-weight: 700;
color: #475569;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.calendar-days-matrix {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 2px;
}
.calendar-day-blank {
padding: 0.4rem 0;
}
.calendar-day-btn {
background: transparent;
border: none;
color: #cbd5e1;
font-size: 0.8rem;
padding: 0.4rem 0;
text-align: center;
cursor: pointer;
border-radius: 4px;
font-family: monospace;
transition: all 0.1s ease;
}
.calendar-day-btn:hover {
background-color: #1e293b;
color: #ffffff;
}
.calendar-day-btn.is-today {
color: #00f2fe;
font-weight: 700;
}
.calendar-day-btn.is-selected {
background-color: #0284c7 !important;
color: #ffffff !important;
font-weight: 700;
}
+5 -31
View File
@@ -42,37 +42,10 @@
<ValidationMessage For="@(() => ProductModel.Summary)" style="color: #ff5722; font-size: 0.75rem;" />
</div>
<div class="console-field-row">
<div class="console-field-group">
<label class="console-field-label">Base Ledger Price (ZAR)</label>
<InputNumber @bind-Value="ProductModel.Price" class="console-input" placeholder="0.00" />
<ValidationMessage For="@(() => ProductModel.Price)" style="color: #ff5722; font-size: 0.75rem;" />
</div>
<div class="console-field-group">
<label class="console-field-label">ISBN Reference</label>
<InputText @bind-Value="ProductModel.Isbn" class="console-input" placeholder="e.g., 978-0393312836" />
<ValidationMessage For="@(() => ProductModel.Isbn)" style="color: #ff5722; font-size: 0.75rem;" />
</div>
</div>
<div class="console-field-row">
<div class="console-field-group">
<label class="console-field-label">Author / Creator</label>
<InputText @bind-Value="ProductModel.Author" class="console-input" placeholder="e.g., William Gibson" />
<ValidationMessage For="@(() => ProductModel.Author)" style="color: #ff5722; font-size: 0.75rem;" />
</div>
<div class="console-field-group">
<label class="console-field-label">Date of Publication</label>
<ConsoleDatePicker @bind-Value="ProductModel.PublishDate" />
</div>
</div>
<div class="console-field-group">
<label class="console-field-label">Copyright Information</label>
<InputText @bind-Value="ProductModel.CopyrightInfo" class="console-input" placeholder="e.g., © 1984 William Gibson. All rights reserved." />
<ValidationMessage For="@(() => ProductModel.CopyrightInfo)" style="color: #ff5722; font-size: 0.75rem;" />
<label class="console-field-label">Base Ledger Price (ZAR)</label>
<InputNumber @bind-Value="ProductModel.Price" class="console-input" placeholder="0.00" />
<ValidationMessage For="@(() => ProductModel.Price)" style="color: #ff5722; font-size: 0.75rem;" />
</div>
<div class="console-field-group">
@@ -93,10 +66,10 @@
<label class="console-field-label">Primary Cover</label>
<div class="book-cover-dropzone">
<InputFile OnChange="HandleMainImageUpload" accept=".png,.jpg,.jpeg,.webp" class="hidden-file-input" id="main-image-file" />
<ValidationMessage For="@(() => ProductModel.ImageUrl)" style="color: #ff5722; font-size: 0.75rem;" />
@if (string.IsNullOrEmpty(ProductModel.ImageUrl))
{
/* Clicking anywhere inside this label launches the file system picker */
<label for="main-image-file" class="dropzone-interactive-layer">
<div class="empty-slot-blueprint">
<svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
@@ -147,6 +120,7 @@
}
else
{
/* Clean hidden execution context matched back to label action surfaces */
<InputFile OnChange="@(e => HandleThumbnailUpload(e, index))" accept=".png,.jpg,.jpeg,.webp" class="hidden-file-input" id="@($"thumb-file-{index}")" />
<label for="@($"thumb-file-{index}")" class="empty-slot-blueprint">
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5">
+29 -50
View File
@@ -1,15 +1,10 @@
using LiteCharms.Features.S3.Abstractions;
using LiteCharms.Features.Shop.Products.Models;
using static LiteCharms.Features.S3.Constants;
namespace ShopAdmin.Components;
public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Service s3Service)
{
private bool isCalendarOpen = false;
private DateTime calendarViewingMonth = DateTime.Today;
private List<DateTime?> calendarDays = new();
private readonly CancellationTokenSource cancellationTokenSource = new();
private CancellationToken cancellationToken;
@@ -41,10 +36,13 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
try
{
var file = e.File;
if (file == null) return;
using var stream = new MemoryStream();
await file.OpenReadStream(MaxAllowedFileSize).CopyToAsync(stream, cancellationToken);
stream.Seek(0, SeekOrigin.Begin);
var result = await s3Service.UploadFileAsync(file.Name, stream,
@@ -53,6 +51,7 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
if (result.IsSuccess)
{
ProductModel.ImageUrl = result.Value;
StateHasChanged();
}
}
@@ -65,13 +64,16 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
public void SetPreviewActive(string? url)
{
if (string.IsNullOrWhiteSpace(url)) return;
ActivePreviewUrl = url;
StateHasChanged();
}
public void ClosePreviewDrawer()
{
ActivePreviewUrl = null;
StateHasChanged();
}
@@ -80,10 +82,13 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
try
{
var file = e.File;
if (file == null) return;
using var stream = new MemoryStream();
await file.OpenReadStream(MaxAllowedFileSize, cancellationToken).CopyToAsync(stream, cancellationToken);
stream.Seek(0, SeekOrigin.Begin);
var result = await s3Service.UploadFileAsync(file.Name, stream,
@@ -92,6 +97,7 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
if (result.IsSuccess && index < ProductModel.Thumbnails.Count)
{
ProductModel.Thumbnails[index] = result.Value;
StateHasChanged();
}
}
@@ -106,9 +112,11 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
if (string.IsNullOrEmpty(ProductModel.ImageUrl)) return;
var targetUrl = ProductModel.ImageUrl;
if (ActivePreviewUrl == targetUrl) ActivePreviewUrl = null;
ProductModel.ImageUrl = null;
StateHasChanged();
var result = await s3Service.DeleteFileAsync(GetFileKeyFromUrl(targetUrl));
@@ -122,11 +130,13 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
if (index < 0 || index >= ProductModel.Thumbnails.Count) return;
var targetUrl = ProductModel.Thumbnails[index];
if (string.IsNullOrEmpty(targetUrl)) return;
if (ActivePreviewUrl == targetUrl) ActivePreviewUrl = null;
ProductModel.Thumbnails[index] = string.Empty;
StateHasChanged();
var result = await s3Service.DeleteFileAsync(GetFileKeyFromUrl(targetUrl));
@@ -134,55 +144,24 @@ public partial class CreateProduct([FromKeyedServices(BookshopBucketName)] IS3Se
if (result.IsFailed)
Console.WriteLine($"[S3 Thumbnail Cleanup Failure]: {result.Errors[0].Message}");
}
}
private void ToggleCalendar()
{
if (!isCalendarOpen)
{
// Default viewport context to currently selected value or fallback to today
calendarViewingMonth = ProductModel.PublishDate;
RebuildCalendarMatrix();
}
isCalendarOpen = !isCalendarOpen;
}
public class CreateProductModel
{
[Required(ErrorMessage = "Product name is required.")]
public string? Name { get; set; }
private void RebuildCalendarMatrix()
{
calendarDays.Clear();
[Required(ErrorMessage = "Summary is required.")]
public string? Summary { get; set; }
var firstDayOfMonth = new DateTime(calendarViewingMonth.Year, calendarViewingMonth.Month, 1);
var totalDaysInMonth = DateTime.DaysInMonth(calendarViewingMonth.Year, calendarViewingMonth.Month);
[Required(ErrorMessage = "Description is required.")]
public string? Description { get; set; }
// Offset leading days to align day positions correctly with day of week headers
int leadingOffsets = (int)firstDayOfMonth.DayOfWeek;
for (int i = 0; i < leadingOffsets; i++)
{
calendarDays.Add(null);
}
[Range(0.01, double.MaxValue, ErrorMessage = "Price must be greater than zero.")]
public decimal Price { get; set; }
// Populate active dates
for (int day = 1; day <= totalDaysInMonth; day++)
{
calendarDays.Add(new DateTime(calendarViewingMonth.Year, calendarViewingMonth.Month, day));
}
}
[Required(ErrorMessage = "Primary image is required.")]
public string? ImageUrl { get; set; }
private void NavigateToPreviousMonth()
{
calendarViewingMonth = calendarViewingMonth.AddMonths(-1);
RebuildCalendarMatrix();
}
private void NavigateToNextMonth()
{
calendarViewingMonth = calendarViewingMonth.AddMonths(1);
RebuildCalendarMatrix();
}
private void SelectCalendarDate(DateTime date)
{
ProductModel.PublishDate = date;
isCalendarOpen = false; // Collapse popup smoothly on successful selection
StateHasChanged();
}
public List<string> Thumbnails { get; set; } = [];
}
+20 -137
View File
@@ -59,7 +59,7 @@
flex-direction: column;
gap: 1.5rem;
width: 100%;
margin-bottom: 3rem;
margin-bottom: 3rem; /* Generates clear space before the media controls block */
}
.form-media-deck-section {
@@ -69,6 +69,7 @@
width: 100%;
}
/* Horizontal alignment grid for cover upload & thumbnail array side-by-side */
.media-deck-row {
display: grid;
grid-template-columns: 240px 1fr;
@@ -78,12 +79,10 @@
}
.console-field-group {
position: relative; /* Clamps absolute children to this specific slot's bounds */
display: flex;
flex-direction: column;
gap: 0.6rem;
width: 100%;
margin-bottom: 1.5rem;
}
.console-field-label {
@@ -94,53 +93,25 @@
text-transform: uppercase;
}
/* Handles responsive multi-column layout split blocks for form metrics */
.console-field-row {
display: flex;
gap: 1.5rem;
width: 100%;
}
.console-field-row .console-field-group {
flex: 1;
min-width: 0;
}
@media (max-width: 768px) {
.console-field-row {
flex-direction: column;
gap: 0;
}
}
/* ==========================================================================
Input Form Elements & Custom Date Trigger Matching
Input Form Elements
========================================================================== */
::deep .console-input,
::deep .console-textarea,
.custom-date-trigger-box {
::deep .console-textarea {
width: 100%;
box-sizing: border-box;
background: #060b13 !important;
border: 1px solid #1e293b !important;
border-radius: 4px;
padding: 0.85rem 1rem; /* Matched exactly to snap row heights in line */
padding: 0.85rem 1rem;
color: #f8fafc !important;
font-size: 0.9rem;
outline: none;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-date-trigger-box {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
::deep .console-input:focus,
::deep .console-textarea:focus,
.custom-date-trigger-box.focused {
::deep .console-textarea:focus {
border-color: #00f2fe !important;
box-shadow: 0 0 0 1px rgba(0, 242, 254, 0.2), 0 0 12px rgba(0, 242, 254, 0.1) !important;
background: #02060d !important;
@@ -151,114 +122,23 @@
line-height: 1.5;
}
.calendar-icon {
color: #64748b;
flex-shrink: 0;
}
/* ==========================================================================
Deep Isolated Custom Popup Window
========================================================================== */
::deep .brand-calendar-popup,
.brand-calendar-popup {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
width: 100% !important; /* Force complete row span constraint */
box-sizing: border-box;
padding: 1rem;
background-color: #0b0f19;
border: 1px solid #1e293b;
border-radius: 6px;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
}
.calendar-nav-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.75rem;
}
.calendar-current-month {
font-size: 0.85rem;
font-weight: 600;
color: #f1f5f9;
font-family: monospace;
}
.btn-cal-nav {
background: transparent;
border: none;
color: #94a3b8;
font-size: 0.9rem;
cursor: pointer;
padding: 0.2rem 0.5rem;
border-radius: 4px;
transition: background-color 0.1s;
}
.btn-cal-nav:hover {
background-color: #1e293b;
color: #f8fafc;
}
.calendar-days-grid-header {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
font-size: 0.7rem;
font-weight: 700;
color: #475569;
text-transform: uppercase;
margin-bottom: 0.5rem;
}
.calendar-days-matrix {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 2px;
}
.calendar-day-btn {
background: transparent;
border: none;
color: #cbd5e1;
font-size: 0.8rem;
padding: 0.4rem 0;
text-align: center;
cursor: pointer;
border-radius: 4px;
font-family: monospace;
transition: all 0.1s ease;
}
.calendar-day-btn:hover {
background-color: #1e293b;
color: #ffffff;
}
.calendar-day-btn.is-today {
color: #00f2fe; /* Aligned with your brand's primary neon cyan glow */
font-weight: 700;
}
.calendar-day-btn.is-selected {
background-color: #0284c7 !important;
color: #ffffff !important;
font-weight: 700;
}
/* ==========================================================================
Image Slots & Cloud Upload Dropzones
========================================================================== */
::deep .hidden-file-input,
.hidden-file-input {
display: none !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 0 !important;
height: 0 !important;
opacity: 0 !important;
overflow: hidden !important;
pointer-events: none !important;
display: none !important; /* Forces layout removal */
}
/* Book Cover - Enforced Portrait Display Frame Aspect Ratio */
.book-cover-dropzone {
width: 240px;
aspect-ratio: 2 / 3;
@@ -289,6 +169,7 @@
user-select: none;
}
/* Thumbnails Grid */
.thumbnail-deck-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
@@ -297,7 +178,7 @@
}
.thumbnail-slot-node {
aspect-ratio: 2 / 3;
aspect-ratio: 2 / 3; /* Matches portrait layout format smoothly */
background: #060b13;
border: 1px solid #1e293b;
border-radius: 4px;
@@ -350,6 +231,7 @@
transition: opacity 0.2s ease;
}
/* Show floating control node buttons cleanly on hover state */
.book-cover-dropzone:hover .image-actions-overlay,
.thumbnail-slot-node:hover .image-actions-overlay {
opacity: 1;
@@ -424,6 +306,7 @@
object-fit: cover;
}
/* Floating Close Action Icon sitting directly on top inside the drawer viewport frame */
.btn-close-preview-floating {
position: absolute;
top: 12px;
@@ -449,7 +332,7 @@
/* ==========================================================================
Footer Action Dashboard Bar
========================================================================== */
========================================================================= */
.form-action-footer {
padding: 0.85rem 2.5rem;
background: #04080f;
+1 -1
View File
@@ -16,7 +16,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="LiteCharms.Features" Version="1.41.0" />
<PackageReference Include="LiteCharms.Features" Version="1.40.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid" Version="10.0.8" />
<PackageReference Include="Polly" Version="8.6.6" />
</ItemGroup>