StandardBeagle.Strata.Core 0.1.0-alpha.1

This is a prerelease version of StandardBeagle.Strata.Core.
dotnet add package StandardBeagle.Strata.Core --version 0.1.0-alpha.1
                    
NuGet\Install-Package StandardBeagle.Strata.Core -Version 0.1.0-alpha.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="StandardBeagle.Strata.Core" Version="0.1.0-alpha.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="StandardBeagle.Strata.Core" Version="0.1.0-alpha.1" />
                    
Directory.Packages.props
<PackageReference Include="StandardBeagle.Strata.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add StandardBeagle.Strata.Core --version 0.1.0-alpha.1
                    
#r "nuget: StandardBeagle.Strata.Core, 0.1.0-alpha.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package StandardBeagle.Strata.Core@0.1.0-alpha.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=StandardBeagle.Strata.Core&version=0.1.0-alpha.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=StandardBeagle.Strata.Core&version=0.1.0-alpha.1&prerelease
                    
Install as a Cake Tool

StandardBeagle.Strata.Core

The cascade engine for Strata: registries, primitives, specificity, and inheritance. Resolves a tree + stylesheet into a per-node computed value space. No third-party dependencies.

dotnet add package StandardBeagle.Strata.Core --prerelease
using Strata.Core;

var registry = new PropertyRegistry();          // register IPropertyDescriptors
var cascade  = new Cascade(registry);
ICascadeResult result = cascade.Compute(root, stylesheet);

// Resolve a property — walks inheritance, falls back to the descriptor's initial value.
var value  = result.GetComputed<TColor>(node, "color");
var origin = result.GetOrigin(node, "color");   // Declared / Inherited / Initial

Winning declarations are chosen by importance, then specificity, then source order. Bring a selector language (StandardBeagle.Strata.Css) and a property set (StandardBeagle.Strata.Properties.Styling) to feed it. See the docs.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on StandardBeagle.Strata.Core:

Package Downloads
StandardBeagle.Strata.Properties.Styling

Common styling property descriptors for Strata: color, background, font-weight, font-style, text-decoration, wrap, overflow, padding, margin. Depends only on Strata.Core.

StandardBeagle.Strata.Layout.Yoga

Yoga-backed flexbox/grid layout pass for Strata: maps computed style to a parallel Yoga tree and computes terminal-cell rects.

StandardBeagle.Strata.Interaction

Selector-bound interaction layer for Strata: the `command:` property, IInputSource/HostEvent, ICommandRegistry, and a subscription-diff dispatcher that wires stylesheet-declared commands to System.Reactive event streams as the cascade changes.

StandardBeagle.Strata.Render.Spectre

Spectre.Console projection for Strata: turns a styled tree into an IRenderable for inline console output.

StandardBeagle.Strata.Css

CSS subset selector language for Strata. Type, id, class, attribute, combinators, and pseudo-classes per docs/02-spec.md §3.1.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0-alpha.1 73 6/1/2026