StyleSource
Pennington.UI.Styling
Layer a resolved style slot's effective value came from.
Fields
ConsumerOverrideStyleSource- Default:
2A consumer override, Tailwind-merged over the skin or component default. DefaultStyleSource- Default:
0The Pennington.UI component default. TemplateSkinStyleSource- Default:
1A site template's skin, which replaces the component default wholesale.
Pennington.UI.Styling.StyleSource
namespace Pennington.UI.Styling;
/// Layer a resolved style slot's effective value came from.
public enum StyleSource
{
/// A consumer override, Tailwind-merged over the skin or component default.
public static const StyleSource ConsumerOverride
;
/// The Pennington.UI component default.
public static const StyleSource Default
;
/// A site template's skin, which replaces the component default wholesale.
public static const StyleSource TemplateSkin
;
}