53 changed files
WPE.App.Shared.BaseComponents | ||
Buiness | ||
QuickInfo | ||
QuickInfoProvider.cs + | ||
ServiceCollectionExtensions.cs + | ||
Models | ||
Buttons | ||
ButtonSize.cs + | ||
ButtonStyle.cs rename, edit | ||
General | ||
ComponentMode.cs + | ||
ButtonSize.cs | ||
DatePickerType.cs | ||
Pages | ||
Animations | ||
BubbleLoading.razor | ||
BubbleLoading.razor.css | ||
Atom | ||
Badge.razor + | ||
Badge.razor.css + | ||
Tickets.razor + | ||
Tickets.razor.css + | ||
Buttons | ||
ButtonCategory.razor + | ||
ButtonCategory.razor.css + | ||
ButtonCircleTransparent32.razor + | ||
ButtonCircleTransparent32.razor.css + | ||
ButtonPrimary.razor + | ||
ButtonPrimary.razor.css + | ||
ButtonPrimaryFullscreen.razor + | ||
ButtonPrimaryFullscreen.razor.css + | ||
ButtonSecondary.razor + | ||
ButtonSecondary.razor.css + | ||
ButtonSecondaryFullscreen.razor + | ||
ButtonSecondaryFullscreen.razor.css + | ||
ButtonSquare36.razor + | ||
ButtonSquare36.razor.css + | ||
ButtonSquareInterlaced32.razor + | ||
ButtonSquareInterlaced32.razor.css + | ||
ButtonSquareTransparent32.razor + | ||
ButtonSquareTransparent32.razor.css + | ||
ButtonText.razor + | ||
ButtonText.razor.css + | ||
PrimaryButton.razor | ||
PrimaryButton.razor.css | ||
Components | ||
BaseComponents.razor + | ||
DatePicker | ||
InlineDatePicker.razor | ||
Empty | ||
EmptyState.razor + | ||
EmptyState.razor.css + | ||
EmptySVGBase.cs + | ||
PeopleEmptySVG.razor + | ||
SearchEmptySVG.razor + | ||
TicketsEmptySVG.razor + | ||
VoucherEmptySVG.razor + | ||
Form | ||
DayAndDate.razor + | ||
DayAndDate.razor.css + | ||
ToggleAmount.razor + | ||
ToggleAmount.razor.css + | ||
ToggleSwitch.razor + | ||
ToggleSwitch.razor.css + | ||
Module/Information | ||
QuickInfo.razor + | ||
QuickInfo.razor.css + | ||
ReadMe.md | ||
QuickInfoProvider.cs
/WPE.App.Shared.BaseComponents/Buiness/QuickInfo/QuickInfoProvider.cs+19/WPE.App.Shared.BaseComponents/Buiness/QuickInfo/QuickInfoProvider.cs
Add comment 1 Plus using System;
Add comment 2 Plus using System.Collections.Generic;
Add comment 3 Plus using System.Linq;
Add comment 4 Plus using System.Text;
Add comment 5 Plus using System.Threading.Tasks;
Add comment 6 Plus
Add comment 7 Plus namespace Infsoft.WPE.App.Shared.BaseComponents.Buiness.QuickInfo
Add comment 8 Plus {
Add comment 9 Plus public class QuickInfoProvider
Add comment 10 Plus {
Add comment 11 Plus public event Action<string, string, int, int>? OnShow;
Add comment 12 Plus
Add comment 13 Plus public void Show(string message, string icon, int duration, int delay = 0)
Add comment 14 Plus {
Add comment 15 Plus OnShow?.Invoke(message, icon, duration, delay);
Add comment 16 Plus }
Add comment 17 Plus }
Add comment 18 Plus }
Add comment 19 Plus
ServiceCollectionExtensions.cs
/WPE.App.Shared.BaseComponents/Buiness/ServiceCollectionExtensions.cs+14/WPE.App.Shared.BaseComponents/Buiness/ServiceCollectionExtensions.cs
Add comment 1 Plus using Infsoft.WPE.App.Shared.BaseComponents.Buiness.QuickInfo;
Add comment 2 Plus using Microsoft.Extensions.DependencyInjection;
Add comment 3 Plus
Add comment 4 Plus namespace Infsoft.WPE.App.Shared.BaseComponents.Buiness
Add comment 5 Plus {
Add comment 6 Plus public static class ServiceCollectionExtensions
Add comment 7 Plus {
Add comment 8 Plus public static void AddBaseComponents(this IServiceCollection services)
Add comment 9 Plus {
Add comment 10 Plus services.AddScoped<QuickInfoProvider>();
Add comment 11 Plus }
Add comment 12 Plus }
Add comment 13 Plus }
Add comment 14 Plus
ButtonSize.cs
/WPE.App.Shared.BaseComponents/Models/Buttons/ButtonSize.cs+8/WPE.App.Shared.BaseComponents/Models/Buttons/ButtonSize.cs
Add comment 1 Plus namespace Infsoft.WPE.App.Shared.BaseComponents.Models.Buttons
Add comment 2 Plus {
Add comment 3 Plus public enum ButtonSize
Add comment 4 Plus {
Add comment 5 Plus Big, Medium, Small
Add comment 6 Plus }
Add comment 7 Plus }
Add comment 8 Plus
ButtonStyle.cs
/WPE.App.Shared.BaseComponents/Models/Buttons/ButtonStyle.cs/WPE.App.Shared.BaseComponents/Models/Buttons/ButtonStyle.cs
Renamed from
/WPE.App.Shared.BaseComponents/Models/ButtonStyle.cs
ComponentMode.cs
/WPE.App.Shared.BaseComponents/Models/General/ComponentMode.cs/WPE.App.Shared.BaseComponents/Models/General/ComponentMode.cs
ButtonSize.cs
/WPE.App.Shared.BaseComponents/Models/ButtonSize.cs/WPE.App.Shared.BaseComponents/Models/ButtonSize.cs
DatePickerType.cs
/WPE.App.Shared.BaseComponents/Models/DatePickerType.cs/WPE.App.Shared.BaseComponents/Models/DatePickerType.cs
BubbleLoading.razor
/WPE.App.Shared.BaseComponents/Pages/Animations/BubbleLoading.razor/WPE.App.Shared.BaseComponents/Pages/Animations/BubbleLoading.razor
BubbleLoading.razor.css
/WPE.App.Shared.BaseComponents/Pages/Animations/BubbleLoading.razor.css/WPE.App.Shared.BaseComponents/Pages/Animations/BubbleLoading.razor.css
Badge.razor
/WPE.App.Shared.BaseComponents/Pages/Atom/Badge.razor/WPE.App.Shared.BaseComponents/Pages/Atom/Badge.razor
Badge.razor.css
/WPE.App.Shared.BaseComponents/Pages/Atom/Badge.razor.css/WPE.App.Shared.BaseComponents/Pages/Atom/Badge.razor.css
Tickets.razor
/WPE.App.Shared.BaseComponents/Pages/Atom/Tickets.razor/WPE.App.Shared.BaseComponents/Pages/Atom/Tickets.razor
Tickets.razor.css
/WPE.App.Shared.BaseComponents/Pages/Atom/Tickets.razor.css/WPE.App.Shared.BaseComponents/Pages/Atom/Tickets.razor.css
ButtonCategory.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCategory.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCategory.razor
ButtonCategory.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCategory.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCategory.razor.css
ButtonCircleTransparent32.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCircleTransparent32.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCircleTransparent32.razor
ButtonCircleTransparent32.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCircleTransparent32.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonCircleTransparent32.razor.css
ButtonPrimary.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimary.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimary.razor
ButtonPrimary.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimary.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimary.razor.css
ButtonPrimaryFullscreen.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimaryFullscreen.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimaryFullscreen.razor
ButtonPrimaryFullscreen.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimaryFullscreen.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonPrimaryFullscreen.razor.css
ButtonSecondary.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondary.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondary.razor
ButtonSecondary.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondary.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondary.razor.css
ButtonSecondaryFullscreen.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondaryFullscreen.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondaryFullscreen.razor
ButtonSecondaryFullscreen.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondaryFullscreen.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSecondaryFullscreen.razor.css
ButtonSquare36.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquare36.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquare36.razor
ButtonSquare36.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquare36.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquare36.razor.css
ButtonSquareInterlaced32.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareInterlaced32.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareInterlaced32.razor
ButtonSquareInterlaced32.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareInterlaced32.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareInterlaced32.razor.css
ButtonSquareTransparent32.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareTransparent32.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareTransparent32.razor
ButtonSquareTransparent32.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareTransparent32.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonSquareTransparent32.razor.css
ButtonText.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonText.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonText.razor
ButtonText.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonText.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/ButtonText.razor.css
PrimaryButton.razor
/WPE.App.Shared.BaseComponents/Pages/Buttons/PrimaryButton.razor/WPE.App.Shared.BaseComponents/Pages/Buttons/PrimaryButton.razor
PrimaryButton.razor.css
/WPE.App.Shared.BaseComponents/Pages/Buttons/PrimaryButton.razor.css/WPE.App.Shared.BaseComponents/Pages/Buttons/PrimaryButton.razor.css
BaseComponents.razor
/WPE.App.Shared.BaseComponents/Pages/Components/BaseComponents.razor/WPE.App.Shared.BaseComponents/Pages/Components/BaseComponents.razor
InlineDatePicker.razor
/WPE.App.Shared.BaseComponents/Pages/DatePicker/InlineDatePicker.razor/WPE.App.Shared.BaseComponents/Pages/DatePicker/InlineDatePicker.razor
EmptyState.razor
/WPE.App.Shared.BaseComponents/Pages/Empty/EmptyState.razor/WPE.App.Shared.BaseComponents/Pages/Empty/EmptyState.razor
EmptyState.razor.css
/WPE.App.Shared.BaseComponents/Pages/Empty/EmptyState.razor.css/WPE.App.Shared.BaseComponents/Pages/Empty/EmptyState.razor.css
EmptySVGBase.cs
/WPE.App.Shared.BaseComponents/Pages/Empty/EmptySVGBase.cs/WPE.App.Shared.BaseComponents/Pages/Empty/EmptySVGBase.cs
PeopleEmptySVG.razor
/WPE.App.Shared.BaseComponents/Pages/Empty/PeopleEmptySVG.razor/WPE.App.Shared.BaseComponents/Pages/Empty/PeopleEmptySVG.razor
SearchEmptySVG.razor
/WPE.App.Shared.BaseComponents/Pages/Empty/SearchEmptySVG.razor/WPE.App.Shared.BaseComponents/Pages/Empty/SearchEmptySVG.razor
TicketsEmptySVG.razor
/WPE.App.Shared.BaseComponents/Pages/Empty/TicketsEmptySVG.razor/WPE.App.Shared.BaseComponents/Pages/Empty/TicketsEmptySVG.razor
VoucherEmptySVG.razor
/WPE.App.Shared.BaseComponents/Pages/Empty/VoucherEmptySVG.razor/WPE.App.Shared.BaseComponents/Pages/Empty/VoucherEmptySVG.razor
DayAndDate.razor
/WPE.App.Shared.BaseComponents/Pages/Form/DayAndDate.razor/WPE.App.Shared.BaseComponents/Pages/Form/DayAndDate.razor
DayAndDate.razor.css
/WPE.App.Shared.BaseComponents/Pages/Form/DayAndDate.razor.css/WPE.App.Shared.BaseComponents/Pages/Form/DayAndDate.razor.css
ToggleAmount.razor
/WPE.App.Shared.BaseComponents/Pages/Form/ToggleAmount.razor/WPE.App.Shared.BaseComponents/Pages/Form/ToggleAmount.razor
ToggleAmount.razor.css
/WPE.App.Shared.BaseComponents/Pages/Form/ToggleAmount.razor.css/WPE.App.Shared.BaseComponents/Pages/Form/ToggleAmount.razor.css
ToggleSwitch.razor
/WPE.App.Shared.BaseComponents/Pages/Form/ToggleSwitch.razor/WPE.App.Shared.BaseComponents/Pages/Form/ToggleSwitch.razor
ToggleSwitch.razor.css
/WPE.App.Shared.BaseComponents/Pages/Form/ToggleSwitch.razor.css/WPE.App.Shared.BaseComponents/Pages/Form/ToggleSwitch.razor.css
QuickInfo.razor
/WPE.App.Shared.BaseComponents/Pages/Module/Information/QuickInfo.razor/WPE.App.Shared.BaseComponents/Pages/Module/Information/QuickInfo.razor
QuickInfo.razor.css
/WPE.App.Shared.BaseComponents/Pages/Module/Information/QuickInfo.razor.css/WPE.App.Shared.BaseComponents/Pages/Module/Information/QuickInfo.razor.css