Options
All
  • Public
  • Public/Protected
  • All
Menu

Library @swim/style

@swim/style

package documentation chat

@swim/style implements font, color, gradient, shadow and related types and parsers. @swim/style is part of the @swim/ui framework.

Installation

npm

For an npm-managed project, npm install @swim/style to make it a dependency. TypeScript sources will be installed into node_modules/@swim/style/main. Transpiled JavaScript and TypeScript definition files install into node_modules/@swim/style/lib/main. And a pre-built UMD script can be found in node_modules/@swim/style/dist/main/swim-style.js.

Browser

Browser applications can load swim-ui.js—which bundles the @swim/style library—along with its swim-core.js dependency, directly from the SwimOS CDN.

<!-- Development -->
<script src="https://cdn.swimos.org/js/latest/swim-core.js"></script>
<script src="https://cdn.swimos.org/js/latest/swim-ui.js"></script>

<!-- Production -->
<script src="https://cdn.swimos.org/js/latest/swim-core.min.js"></script>
<script src="https://cdn.swimos.org/js/latest/swim-ui.min.js"></script>

Alternatively, the swim-toolkit.js script may be loaded, along with its swim-system.js dependency, from the SwimOS CDN. The swim-toolkit.js script bundles @swim/style together with all other @swim/toolkit frameworks.

<!-- Development -->
<script src="https://cdn.swimos.org/js/latest/swim-system.js"></script>
<script src="https://cdn.swimos.org/js/latest/swim-toolkit.js"></script>

<!-- Production -->
<script src="https://cdn.swimos.org/js/latest/swim-system.min.js"></script>
<script src="https://cdn.swimos.org/js/latest/swim-toolkit.min.js"></script>

Usage

ES6/TypeScript

@swim/style can be imported as an ES6 module from TypeScript and other ES6-compatible environments.

import * as style from "@swim/style";

CommonJS/Node.js

@swim/style can also be used as a CommonJS module in Node.js applications.

var style = require("@swim/style");

Browser

When loaded by a web browser, the swim-ui.js script adds all @swim/style library exports to the global swim namespace. The swim-ui.js script requires that swim-core.js has already been loaded.

The swim-toolkit.js script also adds all @swim/style library exports to the global swim namespace, making it a drop-in replacement for swim-ui.js and swim-style.js when additional @swim/toolkit frameworks are needed.

Index

Type aliases

AnyBoxShadow

AnyBoxShadow: BoxShadow | BoxShadowInit | string | ReadonlyArray<AnyBoxShadow>

AnyColor

AnyColor: Color | ColorInit | string

AnyColorStop

AnyColorStop: ColorStop | ColorStopInit | ColorStopTuple | string

AnyFont

AnyFont: Font | FontInit | string

AnyFontSize

AnyFontSize: AnyLength | FontSize

AnyHslColor

AnyHslColor: HslColor | HslColorInit | string

AnyLineHeight

AnyLineHeight: AnyLength | LineHeight

AnyLinearGradient

AnyLinearGradient: LinearGradient | LinearGradientInit | string

AnyLinearGradientAngle

AnyLinearGradientAngle: LinearGradientAngle | number

AnyRgbColor

AnyRgbColor: RgbColor | RgbColorInit | string

AnyStyleValue

ColorInit

ColorStopTuple

ColorStopTuple: [AnyColor, AnyLength | null]

FontFamily

FontFamily: string | GenericFamily

FontSize

FontSize: Length | "large" | "larger" | "medium" | "small" | "smaller" | "x-large" | "x-small" | "xx-large" | "xx-small"

FontStretch

FontStretch: "normal" | "ultra-condensed" | "extra-condensed" | "semi-condensed" | "condensed" | "expanded" | "semi-expanded" | "extra-expanded" | "ultra-expanded"

FontStyle

FontStyle: "normal" | "italic" | "oblique"

FontVariant

FontVariant: "normal" | "small-caps"

FontWeight

FontWeight: "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | "bold" | "bolder" | "lighter"

GenericFamily

GenericFamily: "serif" | "sans-serif" | "cursive" | "fantasy" | "monospace" | "system-ui" | "emoji" | "math" | "fangsong"

LineHeight

LineHeight: Length | "normal"

LinearGradientAngle

LinearGradientCorner

LinearGradientCorner: [LinearGradientSide, LinearGradientSide]

LinearGradientSide

LinearGradientSide: "left" | "right" | "top" | "bottom"

StyleValue

StyleValue: DateTime | Angle | Length | Font | Color | LinearGradient | BoxShadow | Transform | Interpolator<any> | number | boolean

Variables

ColorStopInterpolator

ColorStopInterpolator: { prototype: ColorStopInterpolator }

Type declaration

FontFamily

FontFamily: { format: any; fromValue: any }

Type declaration

  • format: function
    • format(family: string): string
    • Parameters

      • family: string

      Returns string

  • fromValue: function
    • fromValue(value: Value): null | string | string[]
    • Parameters

      Returns null | string | string[]

FontSize

FontSize: { fromAny: any; fromValue: any }

Type declaration

  • fromAny: function
    • Parameters

      Returns FontSize

  • fromValue: function
    • Parameters

      Returns null | FontSize

Const HslColorInterpolator

HslColorInterpolator: { prototype: Interpolator<HslColor> }

Type declaration

LineHeight

LineHeight: { fromAny: any; fromValue: any }

Type declaration

  • fromAny: function
    • Parameters

      Returns LineHeight

  • fromValue: function
    • Parameters

      Returns null | LineHeight

LinearGradientInterpolator

LinearGradientInterpolator: { prototype: LinearGradientInterpolator }

Const RgbColorInterpolator

RgbColorInterpolator: { prototype: Interpolator<RgbColor> }

Type declaration

StyleValue

StyleValue: { form: any; fromAny: any; parse: any }

Type declaration

Functions

ToAttributeString

  • ToAttributeString(value: unknown): string
  • Parameters

    • value: unknown

    Returns string

Let ToCssValue

  • ToCssValue(value: unknown): null | CSSStyleValue
  • Parameters

    • value: unknown

    Returns null | CSSStyleValue

ToStyleString

  • ToStyleString(value: unknown): string
  • Parameters

    • value: unknown

    Returns string

Generated using TypeDoc