alfa-style 0.94.0
Install from the command line:
Learn more about npm packages
$ npm install @siteimprove/alfa-style@0.94.0
Install via package.json:
"@siteimprove/alfa-style": "0.94.0"
About this version
This package implements support for CSS properties.
To avoid circular dependencies, the package is organised as follows (from bottom to top) (all paths are relative to src/
) :
-
longhand.ts
: defines the basic class to model longhand properties; -
property/*.ts
(part of): individual longhand properties, one per file; -
longhands.ts
: wraps all longhand properties in a nice bundle and export convenient types; -
shorthand.ts
: defines the basic class to model shorthand properties, depends on the names of longhands as defined in previous file; -
property/*.ts
(part of): individual shorthand properties, one per file; -
shorthands.ts
: wraps all shorthand properties in a nice bundle and export convenient types; -
style.ts
: expose the actual API to manipulate the properties.
To add a new property, create a file in src/property
to define the property, then import the file and add the property to the const
in longhands.ts
or shorthands.ts
.